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
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.
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.
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
-
TotusMundus
Feb 13, 2012 @ 2:12 am | delete
- This is brilliant, thanks more than a million.
-
-
Reply
-
megabu717
Feb 7, 2012 @ 6:03 am | delete
- Awesome lens. I found what I i was looking for. Thanks!
-
-
Reply
-
livinglargeandhappy
Feb 3, 2012 @ 3:54 pm | delete
- Awesome. Very helpful! Very well done. Thank you.
-
-
Reply
-
vh_creativephoto
Feb 1, 2012 @ 9:57 pm | delete
- Kudos to you for such a great lens! Bookmarking this one for helping me with my lenses! Thanks for your input!
-
-
Reply
-
collettehrock
Nov 29, 2011 @ 1:05 am | delete
- Really helpful information
-
-
Reply
-
Kumarastylez
Oct 18, 2011 @ 3:16 pm | delete
- Thank you so much for this lens! you describe it very user friendly. Learnt allot from your lessons :) and i am going to experiment with it. Thumbs Up
-
-
Reply
-
DesignZeal
Aug 1, 2011 @ 3:18 am | delete
- Very instructive, thanks!
The only thing I don't get is if there's a way to add caption to images uploaded in place of Squidoo's image plates (already available in modules). Since we don't have the option to see the raw html, there doesn't seem to be a way to do this... or am I blind?
-
-
Reply
-
KrisB100
Jul 10, 2011 @ 3:32 pm | delete
- Great tips! Thank You!
-
-
Reply
-
Appreviewfree
Jul 4, 2011 @ 10:42 am | delete
- I bookmarked this lens!
-
-
Reply
-
Jun 5, 2011 @ 11:28 pm | delete
- This lens was definitely a lifesaver, now marked in my favs:)... thanks for all the great tips!
-
-
Reply
-
Kids_Corner
May 1, 2011 @ 7:46 pm | delete
- Thank You Very Much - This Lense has helped me out and solved one of my issues.... Thanks again...
-
-
Reply
-
easy16 Apr 15, 2011 @ 5:56 am | delete
- That is super advance lens. Thanks for helping beginners.
-
-
Reply
-
pheonix76
Apr 13, 2011 @ 9:45 pm | delete
- Wow amazing lens. The best I have seen on Squidoo friendly html. Thanks so much!!
-
-
Reply
-
carolfk
Mar 26, 2011 @ 2:49 am | delete
- Thank you so much for this tips! It helped me a lot...Thumbs up for you!!!^_^
-
-
Reply
-
jerrywil
Mar 10, 2011 @ 2:01 pm | delete
- Just used #2 about making text a link. Since I don't know much, this lens is going to save me some time. Thanks.
-
-
Reply
-
Wednesday_Elf
Feb 8, 2011 @ 6:48 am | delete
- Came looking for a font code and found this terrific resource. Have now 'bookmarked' this page for future reference. Very helpful. Thank you.
-
-
Reply
-
mypotlpeople
Jan 29, 2011 @ 11:26 pm | delete
- Thanks for the box background code:)
-
-
Reply
-
adhd-bipolar-depression
Jan 26, 2011 @ 1:52 am | delete
- Thank you for this great info!
-
-
Reply
-
SandyPeaks Jan 17, 2011 @ 2:55 pm | delete
- Thanks - just what I need!
-
-
Reply
-
pumpnut
Dec 16, 2010 @ 8:31 pm | delete
- Thank you! i know this will help me out.
-
-
Reply
-
raphaelo
Dec 5, 2010 @ 9:15 am | delete
- Wow! This lense is so cool and very use for anyone who is not familiar HTML code, especially CSS code for building Squidoo lenses. Thanks for sharing, Give you 5 Stars from ME :)
-
-
Reply
-
hayleylou
Nov 27, 2010 @ 3:10 pm | delete
- Wow - amazing. Just what I was looking for, thanks :)
-
-
Reply
-
MSchindel
Nov 25, 2010 @ 9:00 pm | delete
- Another winner! Thanks so much for all the wonderful help.
-
-
Reply
-
darciefrench
Nov 6, 2010 @ 2:04 pm | delete
- This is a great lens- it might do better in the squidoo tips category? I've blessed it and featured it on my Squidoo Tips Blessings. Many thanks
-
-
Reply
-
puzzlemaker
Oct 13, 2010 @ 9:31 am | delete
- Just wanted to say that you've saved me once again with this lens!!!!!
-
-
Reply
-
kajohu
Sep 29, 2010 @ 7:10 am | delete
- This is a really good all-purpose lens that covers a lot of my HTML questions. I've bookmarked it and will come back to it often I'm sure!
-
-
Reply
-
aesta1
Sep 21, 2010 @ 10:40 pm | delete
- Thanks for this. This has been bookmarked for future reference.
-
-
Reply
-
ChloeJones
Sep 17, 2010 @ 1:17 am | delete
- Thanks for this splendid lens! I love html code which makes lenses look more beautiful. Html code is quite flexible, and all of us should make full use of it.
Best regards,
Chloe
-
-
Reply
-
rootadesigns
Sep 14, 2010 @ 6:37 pm | delete
- Wow! you can tell you spent a lot of time on this lens!
-
-
Reply
-
Othercat
Aug 19, 2010 @ 2:41 am | delete
- I've been using 3 different lenses to get all the information you provided here. Starred, favorited, and bookmarked.
-
-
Reply
-
dagsmith
Jul 31, 2010 @ 9:10 am | delete
- Great Tutorial. Thanks for putting this all in one place!
-
-
Reply
-
savmoy
Jun 24, 2010 @ 12:36 pm | delete
- Hi! This tutorial is great, but there is one piece of information I am missing. Before I can make the changes explained here,I need first to edit the HTML code of my LENS. I can't find any special buttons or commands on the Squidoo dashboard that allows editing the HTML. How do I do that? How do I access the HTMP code of the lens?
-
-
Reply
-
cvi108
Jun 9, 2010 @ 10:39 pm | delete
- Really helped out
-
-
Reply
-
Alfiesgirl May 24, 2010 @ 12:28 am | delete
- Thank you, thank you, thank you, i came across this lens by accident actually whilst looking for another lens I have used previously about adding html code to lenses, thank the Lord that I have an awful memory and came across this lens instead as it contains everything in the one lens which I usually need 3-4 lenses to find. I'm adding this lens to my list of favourites stored on my pc so that I'l be able to find it again...else knowing me I'l forget and never find it ever again. My thumbs-up and my Angel Blessing have been added to this lens.
-
-
Reply
-
ShirlW
May 17, 2010 @ 9:41 am | delete
- Thanks you really helped me out a lot!
-
-
Reply
-
The_Idea_Gal
May 14, 2010 @ 8:15 pm | delete
- Lots of awesome tips. Great lens! Thanks for sharing this!
-
-
Reply
-
The-Java-Gal Apr 29, 2010 @ 3:52 pm | delete
- This is the best HTML code I have looked at. Why? Because it is all meat, and no fluff. When working with code, it is easy to get lost if it isn't presented in tight units. 5*s and bookmarked
-
-
Reply
-
Mickie_G Apr 29, 2010 @ 8:46 am | delete
- I will try the "box image backgrounds" very soon! Thanks for sharing all these tips.
A second - and well deserved - SquidAngel Blessing is bestowed on this lens.
(also gave you a feature on my article about "My Favorite Lenses about CSS and HTML")
-
-
Reply
-
skiesgreen
Apr 14, 2010 @ 3:20 am | delete
- Great lens with lots of practical help. Angel blessed and featured on Stardust by Skiesgreen and How to build a lens. Well done
Norma
-
-
Reply
-
skiesgreen
Apr 14, 2010 @ 3:20 am | delete
- Great lens with lots of practical help. Angel blessed and featured on Stardust by Skiesgreen and How to build a lens. Well done
Norma
-
-
Reply
-
SallyCin
Mar 26, 2010 @ 11:45 am | delete
- Great lens...I will definitely be using your tips! 5*
-
-
Reply
-
pinupdiva-fitness Mar 19, 2010 @ 4:33 pm | delete
- I had to come and thank you for all the useful information you've shared in this lens. I have used the tools that you have provided with great success. Thank you again! :)
-
-
Reply
-
Lironah
Mar 6, 2010 @ 1:03 am | delete
- A big help! Worthy of a lensroll for sure.
-
-
Reply
-
aj2008
Feb 19, 2010 @ 3:59 pm | delete
- What a clear and easy to understand lens. Anyone not sure about HTML will learn a lot from this lens :)
-
-
Reply
-
Twobit
Feb 12, 2010 @ 6:19 pm | delete
- Let me know if there is anything else that people want, I'd be happy to add the code.
-
-
Reply
-
roarman
Feb 11, 2010 @ 1:51 pm | delete
- Awesome! Wow,Thanks!
-
-
Reply
-
StewRoidS
Jan 28, 2010 @ 10:02 pm | delete
- tHAT WAS A BIG HELP BRO VERY WELL DONE!!
-
-
Reply
-
triathlontraining
Jan 12, 2010 @ 11:59 am | delete
- Very nice job Sean! Seriously, very nice job!
-
-
Reply
-
IMBeccaLee
Jan 11, 2010 @ 1:45 pm | delete
- 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
Nov 13, 2009 @ 1:38 pm | delete
- 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
Nov 7, 2009 @ 8:42 pm | delete
- This is very helpful. Thank you for explaining all these details so well! :D
-
-
Reply
-
TasiL
Nov 2, 2009 @ 11:20 am | delete
- Thank you for sharing very helpful!
Tasi
-
-
Reply
-
blue22d
Oct 25, 2009 @ 7:13 pm | delete
- Hi two-bit, you are just what I needed. Great info here. ***** and Thanks.
-
-
Reply
-
Oppong1
Oct 6, 2009 @ 11:41 am | delete
- 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 Sep 20, 2009 @ 10:00 pm | delete
- 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
Sep 20, 2009 @ 3:57 pm | delete
- Thanks - can't believe squidoo dont have a rtd editor
-
-
Reply
-
805Therapy
Sep 18, 2009 @ 11:41 am | delete
- Love this - very helpful!
Thank you
-
-
Reply
-
hilme
Sep 17, 2009 @ 8:15 am | delete
- thanks for the tutorial this is perfect and very easy to follow. excellent keep up the good job!
-
-
Reply
-
Light-in-me
Sep 14, 2009 @ 4:34 pm | delete
- Great lens, love the quote boxes. I am going to favorite and come back for sure.
Take care,
Robin
-
-
Reply
-
jeffwend
Sep 13, 2009 @ 6:01 pm | delete
- Saved this to my bookmarks. Great lens, squid angel blessings
-
-
Reply
-
SueM11 Sep 8, 2009 @ 12:57 am | delete
- Wow great lens. i am new to this HTML. Sure going to try some of your tips on my lens. Thanks.
-
-
Reply
-
BusyQueen
Sep 3, 2009 @ 6:31 pm | delete
- Great HTML stuff! 5*****'s and favorited.
-
-
Reply
-
Misterioso
Sep 3, 2009 @ 5:51 pm | delete
- 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
Sep 2, 2009 @ 12:10 pm | delete
- Fascinating, I'm impressed.
-
-
Reply
-
puzzlemaker
Sep 1, 2009 @ 10:22 pm | delete
- Thanks for lesson 18! It's what I've been searching for but could not find.
-
-
Reply
-
davidstillwagon
Aug 31, 2009 @ 9:33 pm | delete
- terrific lens! 5 and fav'd it
-
-
Reply
-
Twobit
Aug 31, 2009 @ 4:53 pm | in reply to puzzlemaker | delete
- I just turned it on, didn't realize it was off. :D
-
-
Reply
-
puzzlemaker
Aug 31, 2009 @ 10:31 am | delete
- 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
Aug 31, 2009 @ 3:41 am | delete
- 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
Aug 30, 2009 @ 11:21 pm | delete
- Nice lens. 5* from me! Thanks. Really informative. Nicely detailed.
-
-
Reply
-
HorseAndPony
Aug 30, 2009 @ 10:27 pm | delete
- Thanks for the helpful info. Great lens.
-
-
Reply
-
puzzlemaker
Aug 30, 2009 @ 10:22 pm | delete
- 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 Aug 30, 2009 @ 6:23 pm | delete
- 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 Aug 30, 2009 @ 6:22 pm | delete
- 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 Aug 30, 2009 @ 2:36 pm | delete
- wow your great....so easy to follow.. keep it up!!!
-
-
Reply
-
Julia_Wildman Aug 30, 2009 @ 2:33 pm | delete
- Fantastic - as a newbie looking to improve my html skills I'll definitely be referring back to this lens :)
-
-
Reply
-
Twobit
Aug 27, 2009 @ 9:01 pm | in reply to oztoo | delete
- No problem, glad it helped :)
-
-
Reply
-
oztoo
Aug 27, 2009 @ 6:16 pm | delete
- Been having such a hard time understanding this stuff. Thanks your explanations are easy to follow for dummies like me. 5*
-
-
Reply
-
sorana
Jun 13, 2009 @ 8:57 pm | delete
- Love your lens. 5* from me. Very useful tutorial.
-
-
Reply
-
daria369
May 22, 2009 @ 7:50 pm | delete
- Excellent collection of useful tips - well deserved all stars!! :)
-
-
Reply
-
alecman
May 16, 2009 @ 6:00 am | delete
- Thanks, just what I was looking for, easy to follow very well explained tips I'm going to use some right away!
-
-
Reply
-
writeonbro
May 4, 2009 @ 12:20 am | delete
- 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
May 3, 2009 @ 2:15 pm | delete
- 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
Apr 29, 2009 @ 12:38 pm | delete
- 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.
Apr 22, 2009 @ 10:20 am | delete
- 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
Apr 19, 2009 @ 11:43 am | delete
- 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
Apr 17, 2009 @ 1:00 pm | delete
- 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
Apr 13, 2009 @ 12:40 pm | delete
- Blessed by a Squid Angel :)
-
-
Reply
-
vbright105
Apr 8, 2009 @ 8:16 pm | delete
- 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
Mar 10, 2009 @ 4:47 pm | delete
- 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 Feb 22, 2009 @ 10:23 pm | delete
- awesome job and great information that is needed
-
-
Reply
-
JesseEvans
Feb 19, 2009 @ 9:01 pm | delete
- Great lens,just what I needed.
Thanks !
-
-
Reply
-
ArtByLinda Feb 17, 2009 @ 4:55 pm | delete
- Awesome lens, best of luck to you in the fresh squid contest! Linda
-
-
Reply
-
adez7
Feb 9, 2009 @ 11:20 am | delete
- Nice lens! Blessed as well!
-
-
Reply
-
Feb 8, 2009 @ 4:39 am | delete
- THANK YOU SO MUCH FOR THIS LENS :) 5 stars!
-
-
Reply
-
JustBon-Crochet-Designs
Feb 8, 2009 @ 1:03 am | delete
- A wonderful Squidoo tutorial. Love all these HTML tricks. Thanks! 5*s and favorited. :)
-
-
Reply
-
BlackroseBugg
Feb 6, 2009 @ 3:56 pm | delete
- 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
Feb 6, 2009 @ 12:54 pm | delete
- 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
Feb 6, 2009 @ 7:35 am | delete
- Love HTML tutorials! Well done!
-
-
Reply
-
sittonbull
Feb 4, 2009 @ 11:10 pm | delete
- Thanks for this great resource to help us wade through the web of HMTL. 5* faved and lensrolled
-
- Load More
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 »
- 19 featured lenses
- Winner of 3 trophies!
- Top lens » The Meme List