Learn HTML, easily.
We'll be going over several different aspects of lens design, such as changing your fonts, turning your text into a link, using pictures, making a picture linkable, making an email link, and much more.
If your looking for information in regards to finding royalty free images and online image hosting, go here.
- Bookmark this page? Hit CTRL-D
- Feel free to add it to your favorites! here.
Table of Contents
- Lesson 1: Changing your fonts
- Lesson 2: Turning your text into a link
- Lesson 3: Using pictures
- Lesson 4: Making a picture linkable
- Lesson 5: Wrapping your Image
- Lesson 6: Forced line breaks
- Lesson 7: Making an email link
- Lesson 8: Bulleted Lists
- Lesson 9: Adding/Removing the Underline On Your Hyperlinks
- Lesson 10: Creating That Fancy Box Around Your Text
- Lesson 11: That Fancy Box, Advanced!
- Lesson 12: Box Image Backgrounds!
- Lesson 13: Changing Your Font Family
- Lesson 14: Changing your Cursor For Links
- Lesson 15: Enhance Your Quotes!
- Lesson 16: Copyrights and trademarks
- Lesson 17: Text Borders & Backgrounds
- Lesson 18: Box Surrounding Many Text Types
- Related Lenses
- HTML Books
- Dreamweaver
- Sidenote: About Hosting Plans
- What's the word?
Lesson 1: Changing your fonts
To start this off with something very simple, we're going to go ahead and learn about changing your font sizes, type, and coloring. With even something as simple as changing your fonts, it can add a dramatic style change to your lens.
Note: Just because you have the option to change the way your font looks, don't go overboard! Just use it when it's really needed.
This first portion will explain how to easily change your text to so that it comes out as bold, italic, strong, underlined, and colored. When it shows a <i> for example, don't forget to use the finishing </i> tag (the forward slash "/" it tells it when to stop using the effect).
Using the bold, italic, strong, underline, and font color codes.
<b> which gives you This is sample text.
<i> which gives you This is sample text.
<strong> which gives you This is sample text.
<u> which gives you This is sample text.
To change the color of the font use the following code.
Code: <b style="color: red; ">This is sample text.</b>
This is sample text.
To change the background color behind the text, use the following code.
Code: <b style="background-color: #008fff; ">This is a sample text.</b>
This is a sample text.
You can also do a mixture of various codes to give you an additional variety. You can mix both underline and bold, colored and underline, strong and italic, and the list goes on. You could even use all of them at once if you felt like it.
<i><u><b>This is sample text.</i></u></b> which gives you This is sample text
Using strike through
<b style="text-decoration: line-through;">Example Text</b> which gives you Example Text
Using different text sizes.
<b style="font-size: xx-small; ">Sample Text</b> which gives you Sample Text
For the following, use the above example but just replace the "xx-small".
x-small
small
medium
large
x-large
xx-large
Lesson 2: Turning your text into a link
One of the most important aspects of any website, is knowing when to turn a piece of text (or more) into a link for people to follow to another part of your site, or someone else's site. Aside from what you've learned in lesson 1, this will probably be your more frequently used html code.
Note: Just because you can link something, don't get all link happy and link huge portions of text or linking every other word. Use it sparingly.
Standard use, you'll most likely be using this the most.
<a href="http://www.example.com">Your Link Here</a> which gives you Your Link Here
You can also dress your links up with what you've learned in Lesson 1. The following are two examples of what you can do. The first uses the italic and underline html codes, while the example after uses the italic and font color changing html codes.
Linking using italic and underline.
<a href="http://www.example.com"><u><i>Your Link Here</u></i></a> which gives you Your Link Here
Linking using a font color change and italic.
<a href="http://www.example.com"><b style="color=red; "><i>Your Link Here</b></i></a> which gives you Your Link Here
Lesson 3: Using pictures
Adding pictures to your lens is very important, especially if you want to make it a bit more colorful and lively rather than just having a huge wall of text for a lens. In Lesson 3 we'll be talking about the various methods of adding pictures, which includes sizing, linking, and alignment.
If you want to find places online to store your images online or your in the need for royalty free images, please visit my other lens at: Free-Images-for-Squidoo
For the following examples, we'll use this handy-dandy image I whipped up! Nuh-nuh-nuh!

Inserting your image.
The following method is something that you'll most likely be using the most. It's sweet and short, and easy to do. Note, I reduced the size of the original image, it is now 200px by 200px in size, and it will remain that way throughout the rest of the examples.
Code: <img src="http://www.yourdomain/image.jpg">
Gives you the result of..

Changing your image size
This is a nice feature if you ever want to use a picture but you don't want to open a graphical program to reduce the picture's size, instead you can do it right in the code. In this example I'm telling the code to change the size of the picture from 200px by 200px to 50px by 50px, you'll notice the size "50" in the code below.
Code: <img src="http://www.yourdomain/image.jpg" width="50" height="50">
Gives you the result of..

Aligning your image.
Code: <img src="http://www.yourdomain/image.jpg" align="right" >
Gives you the result of..

You can also use another format to align your images, with the "p align" html code.
Code: <p align="center"><img src="http://www.yourdomain/image.jpg" /></p>
Gives you the result of..

Using borders on your images.
You can easily add several different variations of borders with just changing a few of the components, such as having a solid 3px border, to a dashed 5px border, and so forth. Below I will give you several different examples of how it can be used. You see where it says "solid" in the line below? Just change that word to dashed, dotted, double, and so on.
Code: <img src="http://www.yourdomain/image.jpg" style="border: 4px solid #858585; padding: 2px;" />
Gives you the result of..

This is with dashed

This is with dotted

This is with double

This is with groove

This is with ridge

This is with inset

This is with outset
Lesson 4: Making a picture linkable
Without bogging down the previous image lesson, we'll make a quick short lesson here for you to learn how to easily make an image linkable. This is especially handy if your making image buttons linkable or even using this for clickable banners. Trust me, it's a piece of cake!
Code: <a href="http://www.yourdomain.com"><img src="http://www.yourdomain.com/image.jpg" ></a>
Gives you the result of.. (the picture links to my Images for Squidoo lens)
Lesson 5: Wrapping your Image
If you want to have text on the left or right side of your image, then the best way to go around that is to wrap your image with text. Below is an example.
Code: <img src="http://www.yourdomain/image.jpg" style="float: left; margin: 0px 10px 10px 0px;">
Gives you the result of..

What does the 2px 4px 6px 8px mean? Good question. The first number (#px) dictates how much spacing you have above your image. The second number dictates how much space you on the right side of your image, the third is the bottom of your image, the forth is the left side of your image.
So if your going to have your image align top-left while the text wraps around it, then the best method would be is to have your spacing 0px 10px 10px 0px (example). This would represent that you have spacing on your right and bottom area, so it makes a nice buffer between your image and your text.
Lesson 6: Forced line breaks
If you find that you need a space in between your picture, text, or whatever try one the following. Each of these should work.
<p></p>
or
<br>
All you need to do, is just put one of these under your picture or text that you wish to have a space for. This is especially helpful if your writing a lot of text which has spacing between paragraphs. In Squidoo you don't need to use this for text-modules, like the one your reading right this second, just hit your return or enter key to make the space.
Lesson 7: Making an email link
People have used their email for multiple purposes, such as regular communication, sending out newsletters, error reports, and more. In this lesson your going to learn how to make an email link, so all that people need to do in order to email you is to just click that link.
Note: Just remember that when you post your email on the internet, you may start receiving a lot of spam from bots. Just something to keep in mind.
This is a simple little thing to do. The format of the email link is basically the same as a hyperlink, except for one little detail. Just replace the http:// with mailto:, and presto you have made an email link.
It should look something like this:
<a href="mailto:yourname@example.com">My Email Link</a>
Lesson 8: Bulleted Lists
People love lists, I know I do! It's formal, keeps things looking clean, and it automatically indents itself too, which is always nice.
What do you like?
- I love carrots.
- I love chocolate.
- I dislike coconut.
- I dislike olives.
The code..
What do you like?
<ul><li>I love carrots.</li><li>I love chocolate.</li><li>I dislike coconut.</li><li>I dislike olives.</li></ul>
Instead of using the standard round bullet, you can use your own images if you want to by just putting a small image in front of the text, such as this..
List Item One
List Item Two
List Item Three
List Item FourThe code...
<img src="http://i461.photobucket.com/albums/qq340/LordofSaxony/bullet.jpg" /> List Item One
<img src="http://i461.photobucket.com/albums/qq340/LordofSaxony/bullet.jpg" /> List Item Two
<img src="http://i461.photobucket.com/albums/qq340/LordofSaxony/bullet.jpg" /> List Item Three
<img src="http://i461.photobucket.com/albums/qq340/LordofSaxony/bullet.jpg" /> List Item Four
Lesson 9: Adding/Removing the Underline On Your Hyperlinks
Usually hyperlinks are underlined by default, as you've most likely seen throughout the internet, except for those sites where it's hidden. You may have a Squidoo page where underlining is enabled, or it may be disabled by default.
If you have a page where it is automatically disabled, just use the <u>text</u> in your link code, as shown below.
<a href="http://www.example.com"><u>Your Link Here</u></a>
would look like
Your Link Here
If you have a page that has underlining enabled by default, you can easily remove the underlining by adding the following.
<a href="http://www.example.com/" style="text-decoration: none;">Your Link Here</a>
would look like..
Your Link Here
Depending on how you want it, underlining your link can be a nice feature for those who are not in the habit of browsing online, since their more likely to relate "underlining" with "linking". But, on the same token sometimes removing your underline from your link can make it look a bit more clean. Your to judge how you want it, since in my book neither is really bad nor good.
Lesson 10: Creating That Fancy Box Around Your Text
You've probably noticed that I've been using that a lot here, I usually do that so it spices things up a bit, but I try not to do it too much.
I'm talking about this..
Hello, this is a sample, hi hi.
The code for it looks like this..
<p style="padding: 4px; background-color: #dcdcdc; border: dashed 3px #8a8a8a;">Hello, this is a sample, hi hi.</p>
If you look at it, the first portion says that it's going to use a "padding" around the text area, and it says how thick the pixel padding will be by stating that it's going to be 4px. The next portion says what color the background color will be, the numbers you are seeing are color codes that most graphical programs will have. The part after that is talking about the border, which states that it is going to be dashed and 3px (pixels) in size.
You can tweak the padding sizes up reducing or increasing the pixel amounts, such as 1px, 2px, 3px, 4px, and so on. Just becareful not to make it too large it may be a bit obnoxious otherwise.
The different types of borders besides dashed that you can use are..
- none - Specifies no border
- hidden - The same as "none", except in border conflict resolution for table elements
- dotted - Specifies a dotted border
- dashed - Specifies a dashed border
- solid - Specifies a solid border
- double - Specifies a double border
- groove - Specifies a 3D grooved border. Depends on the border-color value
- ridge - Specifies a 3D ridged border. The effect depends on the border-color value
- inset - Specifies a 3D inset border. The effect depends on the border-color value
- outset - Specifies a 3D outset border. The effect depends on the border-color value
- inherit - Specifies that the border style should be inherited from the parent element
Sample Gallery...
none
Hello, this is a sample, hi hi.
hidden
dotted
Hello, this is a sample, hi hi.
dashed
Hello, this is a sample, hi hi.
groove
Hello, this is a sample, hi hi.
solid
Hello, this is a sample, hi hi.
double
Hello, this is a sample, hi hi.
ridge
Hello, this is a sample, hi hi.
inset
Hello, this is a sample, hi hi.
outset
Hello, this is a sample, hi hi.
inherit
Hello, this is a sample, hi hi.
Lesson 11: That Fancy Box, Advanced!
Now that you've mastered the fancy little box, lets take it a step further, shouldn't we? Have you ever wondered how to have a border around a single side, or multiple sides without going all the way around?
In this example, we're only using the bottom as our border area as shown below.
Hello, this is a sample, hi hi.
How about only the right side?
Hello, this is a sample, hi hi.
How about only the top?
Hello, this is a sample, hi hi.
How about only the left side?
Hello, this is a sample, hi hi.
I'll tell you how to do one of them, it's not hard to figure it out after because your only adding "-left, -top, -bottom, and -right" to the border code. As shown below.
<p style="padding: 4px; background-color: #dcdcdc; border-left: dashed 3px #8a8a8a;">Hello, this is a sample, hi hi.</p>
With that you are giving it the command to only show on a single side, if you were to say border-left: it would only show on the left side, for example.
Now your feeling very daring right? How about you only want to show the top and bottom borders, but NOT the left or the right?
Hello, this is a sample, hi hi.
The code would look like this..
<p style="padding: 4px; background-color: #dcdcdc; border-bottom: dashed 3px #8a8a8a; border-top: dashed 3px #8a8a8a;">Hello, this is a sample, hi hi.</p>
All I did was just add a little extra code right after the ; which would be this.. border-top: dashed 3px #8a8a8a
With that you can do all sides but the right side, or the left side, or the top, or the bottom. If your really nuts you can make different types of borders on each side for something truly hideous!!
Hello, this is a sample, hi hi.
Lesson 12: Box Image Backgrounds!
Your Title Here!!!!
I'm just giving you an example of what you can do if you want to make background for your text. You can get pretty creative with this if you want, and depending on your image sizing you may have to do a bit of shoehorning and experimenting.
Here is the code I used.
<p style="padding: 8px; background-image: url(http://i461.photobucket.com/albums/qq340/LordofSaxony/background4.jpg); border: solid 2px #ffbb03;"><strong><b style="font-size: large; ">Your Title Here!!!!</b></strong></p>
In all seriousness, the best way to do this is to make a test site of your own or just test it inside one of your text modules and play with the padding and image size.
Lesson 13: Changing Your Font Family
Sometimes you want a totally different font on your Squidoo lens, with the following types of fonts you can do that. A piece of advice, only use the fonts that people normally would have, such as the list below, do not use one that only you have that you downloaded at some point, it may show up for you but it won't show up for them. So be safe, use standard font families.
The following is a list of "should be safe" font families that usually come installed on your computer
font-family: Arial, Helvetica, sans-serif;
font-family: 'Arial Black', Gadget, sans-serif;
font-family: 'Bookman Old Style', serif;
font-family: 'Comic Sans MS', cursive;
font-family: Courier, monospace;
font-family: 'Courier New', Courier, monospace;
font-family: Garamond, serif;
font-family: Georgia, serif;
font-family: Impact, Charcoal, sans-serif;
font-family: 'Lucida Console', Monaco, monospace;
font-family: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
font-family: 'MS Sans Serif', Geneva, sans-serif;
font-family: 'MS Serif', 'New York', sans-serif;
font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
font-family: Symbol, sans-serif;
font-family: Tahoma, Geneva, sans-serif;
font-family: 'Times New Roman', Times, serif;
font-family: 'Trebuchet MS', Helvetica, sans-serif;
font-family: Verdana, Geneva, sans-serif;
font-family: Webdings, sans-serif;
font-family: Wingdings, 'Zapf Dingbats', sans-serif;
Here is an example..
Hello, this is a nice example isn't it? This is using the Comic Sans MS font style. Fun fun!
The code for this would look like..
<b style="color: #ffb400; font-family: Comic Sans MS;">Hello, this is a nice example isn't it? This is using the Comic Sans MS font style. Fun fun!</b>
As you noticed, it says "font-family: Comic Sans MS;" and that is where you would put the font name.
More examples..
Arial
Arial Black
Bookman Old Style
Comic Sans MS
Courier, monospace
Courier New
Garamond
Georgia
Impact
Lucida Console
Lucida Sans Unicode
MS Sans Serif
MS Serif
Palatino Linotype
Symbol
Tahoma
Times New Roman
Trebuchet MS
Verdana, Geneva, sans-serif
Lesson 14: Changing your Cursor For Links
Some people like to have a unique hover option for their cursor, below are several methods and styles for you to change the way it looks when a person hovers over your link.
Tip: Hover over the links to see.
Pointer
<a hred="#" style="cursor:Pointer">Pointer</a>
Wait
<a hred="#" style="cursor:Wait">Wait</a>
Crosshair
<a hred="#" style="cursor:Crosshair">Crosshair</a>
Move
<a hred="#" style="cursor:Move">Move</a>
Col-Resize
<a hred="#" style="cursor:Col-Resize">Col-Resize</a>
All-Scroll
<a hred="#" style="cursor:All-Scroll">All-Scroll</a>
No-Drop
<a hred="#" style="cursor:No-Drop">No-Drop</a>
Not-Allowed
<a hred="#" style="cursor:Not-Allowed">Not-Allowed</a>
Progress
<a hred="#" style="cursor:Progress">Progress</a>
Url
<a hred="#" style="cursor:Url">Url</a>
Vertical-Text
<a hred="#" style="cursor:Vertical-Text">Vertical-Text</a>
NE-Resize
<a hred="#" style="cursor:NE-Resize">NE-Resize</a>
NW-Resize
<a hred="#" style="cursor:NW-Resize">NW-Resize</a>
Lesson 15: Enhance Your Quotes!
The following quote box is similar to the one I have in one of my forums, and it's similar also to the one at vbulletin.org (what I use for forum software). Although mine is written with div tags, you can still get the similar feel of it without using divs at all.
This first quote box uses no images.
"
This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!!
Here is the code
<br />
<b style="font-size: 60pt; font-family: Times New Roman';">"
<b style="float: left; font-weight: bold; font: 22px normal verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; margin-top: -50px; margin-bottom: 10px; margin-left: 50px; padding-left: 15px; border-left: 3px solid #ccc;">This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!!</b>
</b>
This quote box below uses an image. On the plus side, you can replace this image with anything that you want to make it look pretty. You could use flowery quotes, gothic quotes, shapes, anything. Just upload your image to a free image hosting site, such as talked about here. You may want to keep it the same size as whats being used, unless you want to fiddle with the padding to make it line up right. **Please use your own image or copy and upload this one to your own hosting place!!**

This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!!
... and the code
<br />
<b style="margin-left: 10px; margin-top: -10px"><img src="http://i461.photobucket.com/albums/qq340/LordofSaxony/quote3.png" border="0" alt="quote3" />
<b style="float: left; font-weight: bold; font: 22px normal verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif; margin-top: -50px; margin-bottom: 10px; margin-left: 50px; padding-left: 15px; border-left: 3px solid #ccc;">This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!!</b>
</b>
The following is an example of a more.. colorful quote. You can easily just replace the image with anything you want. **Please use your own image or copy and upload this one to your own hosting place!!**

This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!!
Lesson 16: Copyrights and trademarks
A lot of people out there copyright their works, afterall it's important so that no one tries and steal your work. You wouldn't want to work several months on something just to have someone come along and swipe it, would you?
These are the most commonly used copyright and trademark symbols, also feel free to come back here at any time and copy and paste these symbols into your own works.
© This is the copyright symbol. To use the symbol, hold the ALT key, press 0, 1, 6, 9.
TM This is the trademark symbol. To use the symbol, hold the ALT key, press 0, 1, 5, 3. Note: The small TM symbol isn't working in this module, but the instructions to use the symbol are correct.
® This is the 'registered' trademark symbol. To use the symbol, hold the ALT key, press 0, 1, 7, 4.
Lesson 17: Text Borders & Backgrounds
Sometimes it's nice to make your text a bit different with borders and backgrounds, and make it stand out among the rest of your text. There are several methods to make this happen.
The infamous double underline, it's pretty simple to do really. All your doing is placing a bottom border below your text, and using an additional "u" underline with it.
This is some text.
The code...
<u><b style="border-bottom: 1px double #000;">This is some text.</b></u>
The line on the top and line on the bottom method (you can also use this for linking!)
This is some text.
The code...
<u><b style="border-top: 1px double #000;">This is some text.</b></u>
I'm not sure what you would use this for, but who knows you might think of something interesting. This is borders on the right and left side of your text only.
This is some text.
<b style="border-right: 1px double #000; border-left: 1px double #000;">This is some text.</b>
This is just putting a border around your text.
This is some text.
<b style="border: 1px double #000;">This is some text.</b>
The infamous dashed underline (sometimes people use this for links)
This is some text.
<b style="color: #0084ff; border-bottom: 1px dashed #0084ff;">This is some text.</b>
Using a background color with your text.
This is some text.
The code..
<b style="background-color: #0084ff; ">This is some text.</b>
Using a background color with border.
This is some text.
The code..
<b style="border: 1px double #006acc;background-color: #a2dbff;">This is some text.</b>
Lesson 18: Box Surrounding Many Text Types
Here is a bordered box with multiple types of inner text, the bold colored title, the italic description, and the regular text below.
Title Is Here.
This is where your Italic Font is.
This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!! Oh wait, and there is even more text to see how this stretches? Uh huh, yuppers.. even more here..
The code..
<br />
<b style="float: left; margin-top: 0px; margin-bottom: 0px; margin-left: 20px; margin-right: 20px; padding-left: 0px; border: 4px solid #000;"><p align="center">
<b style="font-size: 24px; color: red;">Title Is Here.</b>
<b style="font-size: 18px; color: black; "><i>This is where your Italic Font is.</i></b>
</p>
<b style="float: left; font-weight: normal; font: 18px; margin-top: 0px; margin-bottom: 10px; margin-left: 0px; padding-left: 15px; padding-right: 15px;">This is where the text is! I'm going to keep on typing text to see how this stretches out! Yay! Here is more text, and even more coming at ya!! Oh wait, and there is even more text to see how this stretches? Uh huh, yuppers.. even more here..</b>
</b>
Related Lenses
If your interested in HTML, you may also be interested in the following lenses.-
Your Free Images for Squidoo Resource and How-To Guide
-
You have this perfect idea for your lens, right? But, you have no idea where to get pictures that are royalty free for you to use? No problem, this lens will tell you exactly where to go to get them. Also, I will tell you how to put them into your s...
-
The Graphics Software List
-
This is a comprehensive guide for those that wish to know about various graphical software types. Some of the graphical software out there is 100% free, while others can cost you several hundred dollars. There are a lot of great programs out there t...
-
The Best Hosting Plans, A Beginner's Guide
-
Welcome to a Squidoo'ers Guide to Best Hosting Plans. A lot of people who are new to the internet, or those just starting to consider making their own websites, have no clue where to start in regards to getting their own site built. We're talking abo...
-
The Best Forum Software
-
If there is one thing I know, and I know very well, it's forums. I've been posting on forums for about 15 years now, even during the times of the earlier make-shift forum boards. Over that time I've also used my own forums, both free and commercial a...
HTML Books
Sometimes it's handy to have your own HTML book at your side, so you can read about it at any time, on the bus, on break at work, and so forth. Feel free to check the following books out, you may see one that tickles your fancy.
HTML in Easy Steps
Amazon Price: $11.24 (as of 02/09/2010) ![]()
List Price: $14.99
Usually ships in 24 hours
Easy HTML-DB Oracle Application Express: Create Dynamic Web Pages with OAE (Easy Oracle Series)
Amazon Price: $29.16 (as of 02/09/2010) ![]()
List Price: $39.95
Usually ships in 24 hours
Web Site Design Made Easy: Learn Html, Xhtml, and Css
Amazon Price: $43.70 (as of 02/09/2010) ![]()
List Price: $53.95
Usually ships in 24 hours
Schaum's Easy Outline HTML
Amazon Price: $8.95 (as of 02/09/2010) ![]()
List Price: $8.95
Usually ships in 24 hours
Dreamweaver
I normally use Adobe Dreamweaver when I'm creating a website. I used to use Frontpage years back, but it's been a while. So, with that I'm going to recommend Dreamweaver because I like the features as well as the community behind it. Even if you don't plan on making a website right this second, it's still nice to have around so that you can learn in your free time.
Adobe Dreamweaver CS4
Release Date: 10/31/2008
Amazon Price: $387.49 (as of 02/09/2010) ![]()
List Price: $399.00
Usually ships in 24 hours
Adobe Dreamweaver CS4 [Mac]
Release Date: 10/27/2008
Amazon Price: $390.49 (as of 02/09/2010) ![]()
List Price: $399.00
Usually ships in 24 hours
WebPlus X2 Website Maker
Release Date: 09/20/2009
Amazon Price: $71.49 (as of 02/09/2010) ![]()
List Price: $79.99
Usually ships in 24 hours
Adobe Dreamweaver CS3 [OLD VERSION]
Release Date: 04/20/2007
Adobe Dreamweaver CS4 Upgrade
Release Date: 10/27/2008
Amazon Price: $198.49 (as of 02/09/2010) ![]()
List Price: $199.00
Usually ships in 24 hours
Sidenote: About Hosting Plans
What you learn here on this lens, you can also use on your own website. If your thinking about having your own www.yourname.com then feel free to check out my other lens entitled, The Best Hosting Plans. What's the word?
Let me know if there are any problems, also I would be glad to hear if this guide helped you in any way.
-
Reply
- StewRoidS StewRoidS Jan 28, 2010 @ 10:02 pm
- tHAT WAS A BIG HELP BRO VERY WELL DONE!!
-
Reply
- triathlontraining triathlontraining Jan 12, 2010 @ 11:59 am
- Very nice job Sean! Seriously, very nice job!
-
Reply
- IMBeccaLee IMBeccaLee Jan 11, 2010 @ 1:45 pm
- Great lens, I am new to Squidoo and also don't know HTML from FTP! I am bookmarking this site for sure. I can't believe how many helpful lenses are here.
-
Reply
- PersonalityNCareers PersonalityNCareers Nov 13, 2009 @ 1:38 pm
- For some reason the html code for trademark TM still does not function?
alt 0 1 5 3 does produce the TM symbol in edit mode but it shows up as %u2122 when viewed.
Any thoughts?
Other than that, overall, the guide is very helpful. Thanks!
-
Reply
- JoyfulPamela JoyfulPamela Nov 7, 2009 @ 8:42 pm
- This is very helpful. Thank you for explaining all these details so well! :D
-
Reply
- TasiL TasiL Nov 2, 2009 @ 11:20 am
- Thank you for sharing very helpful!
Tasi
-
Reply
- blue22d blue22d Oct 25, 2009 @ 7:13 pm
- Hi two-bit, you are just what I needed. Great info here. ***** and Thanks.
-
Reply
- Oppong1 Oppong1 Oct 6, 2009 @ 11:41 am
- Hello Bryan ,
I will like to ask if you can make a step by step video for me on how to put hyperlink in my squidoo lens , How to make my squidoo lens images clickable , How to set up RSS FEED on my squidoo lens .
Please let me know how much it will cost me so i can pay you by paypal . I am not so good in english so i will like to see you doing it .
Thank's ,
Daniel .
-
Reply
- JessicaRabb JessicaRabb Sep 20, 2009 @ 10:00 pm
- omg this was very squidaliciouse! sorry had to do it lol. very very informative thankyou! I just get so excited of how people like you go through such time explaining a topic you most likely enjoy yourself for the rest of us. giving you mad props from ny for your lens :)
-
Reply
- spainops spainops Sep 20, 2009 @ 3:57 pm
- Thanks - can't believe squidoo dont have a rtd editor
-
Reply
- 805Therapy 805Therapy Sep 18, 2009 @ 11:41 am
- Love this - very helpful!
Thank you
-
Reply
- hilme hilme Sep 17, 2009 @ 8:15 am
- thanks for the tutorial this is perfect and very easy to follow. excellent keep up the good job!
-
Reply
- Light-in-me Light-in-me Sep 14, 2009 @ 4:34 pm
- Great lens, love the quote boxes. I am going to favorite and come back for sure.
Take care,
Robin
-
Reply
- jeffwend jeffwend Sep 13, 2009 @ 6:01 pm
- Saved this to my bookmarks. Great lens, squid angel blessings
-
Reply
- SueM11 SueM11 Sep 8, 2009 @ 12:57 am
- Wow great lens. i am new to this HTML. Sure going to try some of your tips on my lens. Thanks.
-
Reply
- BusyQueen BusyQueen Sep 3, 2009 @ 6:31 pm
- Great HTML stuff! 5*****'s and favorited.
-
Reply
- Misterioso Misterioso Sep 3, 2009 @ 5:51 pm
- Great site! I am new to all this, so I will bookmark this site and study it carefully. Just looking at it briefly I can tell that you are an excellent teacher. I taught for over 40 years, and I can spot good teaching techniques. You got them! Thanks for the site.
-
Reply
- Spook Spook Sep 2, 2009 @ 12:10 pm
- Fascinating, I'm impressed.
-
Reply
- puzzlemaker puzzlemaker Sep 1, 2009 @ 10:22 pm
- Thanks for lesson 18! It's what I've been searching for but could not find.
-
Reply
- davidstillwagon davidstillwagon Aug 31, 2009 @ 9:33 pm
- terrific lens! 5 and fav'd it
-
Reply
- Twobit Twobit Aug 31, 2009 @ 4:53 pm | in reply to puzzlemaker
- I just turned it on, didn't realize it was off. :D
-
Reply
- puzzlemaker puzzlemaker Aug 31, 2009 @ 10:31 am
- Oops Twobit, don't see your "contact me" button on your bio page. It might, by default, be turned off. I'll check back later.
-
Reply
- prosperity66 prosperity66 Aug 31, 2009 @ 3:41 am
- Wow! Amazing lens! I even bookmark it to my computer so that I can go back as often as I want whenever I create a lens!
Thanks for such GREAT resource!
Dom.
-
Reply
- BusyQueen BusyQueen Aug 30, 2009 @ 11:21 pm
- Nice lens. 5* from me! Thanks. Really informative. Nicely detailed.
-
Reply
- HorseAndPony HorseAndPony Aug 30, 2009 @ 10:27 pm
- Thanks for the helpful info. Great lens.
-
Reply
- puzzlemaker puzzlemaker Aug 30, 2009 @ 10:22 pm
- You've got all the info right here in one place. Wonderful! I do have one question, but it's involved so I'll email you and perhaps, if there is a demand for the code, you could add it here. Thanks.
-
Reply
- Mickie_G Mickie_G Aug 30, 2009 @ 6:23 pm
- Thanks for the code for putting a frame around a photo image! I am using it on a soon to be published lens about making a money gift tree. Will give you a credit, too.
-
Reply
- Mickie_G Mickie_G Aug 30, 2009 @ 6:22 pm
- Thanks for putting the codes to putting frames around pictures. I am using two of them in a lens I am about to publish on "Creating a gift money tree". Am giving you a credit!
-
Reply
- bluesapphire007 bluesapphire007 Aug 30, 2009 @ 2:36 pm
- wow your great....so easy to follow.. keep it up!!!
-
Reply
- Julia_Wildman Julia_Wildman Aug 30, 2009 @ 2:33 pm
- Fantastic - as a newbie looking to improve my html skills I'll definitely be referring back to this lens :)
-
Reply
- Twobit Twobit Aug 27, 2009 @ 9:01 pm | in reply to oztoo
- No problem, glad it helped :)
-
Reply
- oztoo oztoo Aug 27, 2009 @ 6:16 pm
- Been having such a hard time understanding this stuff. Thanks your explanations are easy to follow for dummies like me. 5*
-
Reply
- sorana sorana Jun 13, 2009 @ 8:57 pm
- Love your lens. 5* from me. Very useful tutorial.
-
Reply
- daria369 daria369 May 22, 2009 @ 7:50 pm
- Excellent collection of useful tips - well deserved all stars!! :)
-
Reply
- alecman alecman May 16, 2009 @ 6:00 am
- Thanks, just what I was looking for, easy to follow very well explained tips I'm going to use some right away!
-
Reply
- writeonbro writeonbro May 4, 2009 @ 12:20 am
- How about that neat little thing you did with the HTML books, to get all of the images aligned in a row can you show me that one? Please!
-
Reply
- sandyspider sandyspider May 3, 2009 @ 2:15 pm
- I featured this lens in my new Squidoo tips resource lens. Stop by and let me know what you think. http://www.squidoo.com/html-text-image-tips
You might be new here, but certainly off to a great start. 5*
-
Reply
- Intuitive Intuitive Apr 29, 2009 @ 12:38 pm
- Very nice lens. Easy to understand. The "inset" and "outset" parts are handy. How do you put a row of pictures side by side? 5*
-
Reply
- AshleyBretting-M.S. AshleyBretting-M.S. Apr 22, 2009 @ 10:20 am
- Thank you for putting this lens together and sharing your knowledge :)
I have favorited! 5* for this. Come visit some of my work and say hello ( humor, dogs, mental health )
-
Reply
- RoomDesignOnline RoomDesignOnline Apr 19, 2009 @ 11:43 am
- Fantastic! Takes me a step beyond what I've learned in some of the other lenses. Thanks so much for writing this. 5 stars from me too.
-
Reply
- a_willow a_willow Apr 17, 2009 @ 1:00 pm
- You are one of January 2009 graduates! Come by and answer few questions to show the way to those who will follow! Wish you many, many more great lenses!
-
Reply
- Janusz Janusz Apr 13, 2009 @ 12:40 pm
- Blessed by a Squid Angel :)
-
Reply
- vbright105 vbright105 Apr 8, 2009 @ 8:16 pm
- Very well done! I'm favoriting this one so I can come back when I need it. I'm sprinkling some angels dust on it for you!
-
Reply
- MikeMac MikeMac Mar 10, 2009 @ 4:47 pm
- Sean,
Good info. Defnitie 5-star.Thanks for compiling this. Another good HTML book I've found is "head First HTML with CSS & XHTML" by Elisabeth Freeman. Stop by and check out my my lens: Using Technology and let me know what you think. . --Mike
-
Reply
- marsha32 marsha32 Feb 22, 2009 @ 10:23 pm
- awesome job and great information that is needed
-
Reply
- JesseEvans JesseEvans Feb 19, 2009 @ 9:01 pm
- Great lens,just what I needed.
Thanks !
-
Reply
- ArtByLinda ArtByLinda Feb 17, 2009 @ 4:55 pm
- Awesome lens, best of luck to you in the fresh squid contest! Linda
-
Reply
- adez7 adez7 Feb 9, 2009 @ 11:20 am
- Nice lens! Blessed as well!
-
Reply
- Shindig Shindig Feb 8, 2009 @ 4:39 am
- THANK YOU SO MUCH FOR THIS LENS :) 5 stars!
-
Reply
- JustBon-Crochet-Designs JustBon-Crochet-Designs Feb 8, 2009 @ 1:03 am
- A wonderful Squidoo tutorial. Love all these HTML tricks. Thanks! 5*s and favorited. :)
-
Reply
- BlackroseBugg BlackroseBugg Feb 6, 2009 @ 3:56 pm
- Wow! Great lens- seems to be almost idiot proof! Of course, I haven't actually tried to use it yet :) But I think even I can manage with these clear instructions! Thank you!
-
Reply
- jjj1 jjj1 Feb 6, 2009 @ 12:54 pm
- Many thanks for such an excellent and helpful lens. I have used it to add multimple pics to a section and to position those pics, as well as creating the illusion of sub-headings.
-
Reply
- Jimmie Jimmie Feb 6, 2009 @ 7:35 am
- Love HTML tutorials! Well done!
-
Reply
- sittonbull sittonbull Feb 4, 2009 @ 11:10 pm
- Thanks for this great resource to help us wade through the web of HMTL. 5* faved and lensrolled
-
Reply
- calicoskies calicoskies Feb 3, 2009 @ 10:21 pm
- Great Resource! :)
-
Reply
- mbgphoto mbgphoto Feb 2, 2009 @ 6:19 pm
- Excellent! Thank you so much!
-
Reply
- Joan4 Joan4 Feb 2, 2009 @ 5:09 pm
- I am going to print it too, and favorited and 5*****. Lensrolling to Squidoo to do lists, too!! Great one! esp for those of us just barely learning html! Thank you!
-
Reply
- OhMe OhMe Feb 2, 2009 @ 5:01 pm
- Thank you for this. I am going to print this out and leave it on my desk. Great work for a great lens.
-
Reply
- Aquavel Aquavel Feb 2, 2009 @ 2:32 am
- This is an excellent lens. As a newbie, I found all this information out, but it was scattered over number of Squidoo lenses. It's great to have most of the info in one place & have it easily understandable. 5*s!
-
Reply
- lou16 lou16 Feb 1, 2009 @ 11:48 pm
- You've got lots of great information in a really easy to understand format 5*.
-
Reply
- a_willow a_willow Feb 1, 2009 @ 2:52 pm
- This lens entered Fresh Squid Contest for February as one of featured lenses on Fresh Squid group in January! Come by and vote!
-
Reply
- DebtSolutions22 DebtSolutions22 Feb 1, 2009 @ 8:39 am
- I have been searching for a lens like this one. Great easy to use tips. 5*. I will implementing some of your tips to all my lens. Thanks for the great information :)
-
Reply
- a_willow a_willow Feb 1, 2009 @ 2:58 am
- Splendid job! Welcome to Fresh Squid group! Glad to have you aboard!
-
Reply
- Squidoo-Pat Squidoo-Pat Jan 31, 2009 @ 10:53 pm
- Major Kewl Lens Sean-5 all the way!
-
Reply
- stargazer00 stargazer00 Jan 31, 2009 @ 5:42 pm
- Very nice! I see some things here I want to try. Thanks@
-
Reply
- Snozzle Snozzle Jan 30, 2009 @ 12:07 pm
- Excellent. The lens will be useful for lots if people.
Mike.
-
Reply
- kiwisoutback kiwisoutback Jan 30, 2009 @ 7:27 am
- Great work! Very easy to follow.
-
Reply
- Stazjia Stazjia Jan 30, 2009 @ 5:13 am
- Crystal clear guide to html for Squidoo with really good illustrations. 5*
-
Reply
- narreyes narreyes Jan 29, 2009 @ 8:17 am
- Congrats, you have here a great lens. 5* I also favorited it !
-
Reply
- LaraineRose LaraineRose Jan 29, 2009 @ 3:18 am
- Where were you when I started in Squidoo? Your explanations are excellent! I'm going to lensroll you to my personal lens. 5*s
-
Reply
- flighty02 flighty02 Jan 29, 2009 @ 1:53 am
- Nice lens and a very useful guide, thanks for sharing.
-
Reply
- Twobit Twobit Jan 28, 2009 @ 11:46 pm
- Thanks for all your compliments! :)
-
Reply
- MiaBellezza MiaBellezza Jan 28, 2009 @ 11:39 pm
- Good show Twobit - helpful information - 5*!
-
Reply
- Margaret_Schaut Margaret_Schaut Jan 28, 2009 @ 8:05 pm
- Excellent resource for Squidooers, both seasoned and newbies! Giving you the works!
-
Reply
- motorpurrr motorpurrr Jan 28, 2009 @ 12:30 pm
- Nice! I love HTML. I love how you show it here it's easy to understand. I put a link to htis in my Squidoo info lens. Thanx
-
Reply
- jfield jfield Jan 28, 2009 @ 12:14 pm
- Nicely done; well explained. I will certainly be referring to this often:)
-
Reply
- flipflopnana flipflopnana Jan 28, 2009 @ 12:09 pm
- Great Job! Very easy to understand. Thanks!
-
Reply
- Janusz Janusz Jan 28, 2009 @ 12:00 pm
- The "Word" is TOP! Well done, this is a Great guide ;) I´m adding it to Community Workers... You are invited to display your badge.
by Twobit

Want to make your lens look better? Check out the HTML Code Guide - Squidoo Edition!
Hello, I'm Sean.. your fellow Squidoo'er! I'm born and raised... (more)

