Advanced HTML
The techniques shown here aren't much more advanced then what's in the Basic HTML tutorial. The code being used isn't any more special. But the results and presentation can appear to be more sophisticated. Hence it being the Advanced HTML tutorial. For what it does for the look of your lens.
Please be aware that these techniques be used in moderation. Otherwise the feel and design of your page will look like a train wreck. The people at Squidoo Inc have done a fine job of making a functional and clean design. All you have to do is fill it with quality content. If some of the suggestions here help communicate that content then my mission is accomplished. But don't use them for the sake of trying to look clever.
Table of Contents
- HTML Colors
- Font Families
- Background Color
- Text Size Large
- Text Size Small
- Strike Through
- Printable Coupons
- Capitalizing
- The Title Attribute
- Spoiler Text
- Quoting
- Quotes for SquidWho
- Magazine Style Pull Quote
- Superscript and Subscript
- Small Caps
- Math Symbols
- Spacing
- Spiffing up your Poll Options
- Lists: Ordered, Unordered and Bulleted
- Whistle While You Work
- Change Your Cursor
- iframes
HTML Colors
I've compiled a list of colors which got too long to incorporate in this lens so I've split it off as a stand-alone lens. Pick and choose colors and color themes to your hearts content while using any of the tricks, tips and techniques outlined here.-
HTML Tips for Color
-
Color can be applied via HTML tags to fonts, borders and backgrounds. squidoo.com/basichtml and squidoo.com/advancedhtml show how to implement these colors. This lens however isn't going to show how the code is applied, but is a repository for the...
Font Families
Squidoo uses Verdana. Which is quite readable. So there's no need to change it for big slabs of text (unless you're planning on going with a Times New Roman style typeface). The fancier the font the harder it is to read, the more strain it is for the eyes, and the quicker the eyes will fatigue.
Here are a few I'd suggest...
font-family: serif;
font-family: Times;
font-family: Georgia;
font-family: sans-serif;
font-family: Arial;
font-family: Helvetica;
font-family: Impact;
font-family: cursive;
font-family: fantasy;
font-family: monospace;
font-family: Courier;
Copy and paste the one you want and slip it into the formatting code that's mentioned in this module.
Here's a few more that are considered "Web Safe"...
Comic Sans MS
Arial Black
Courier New
Times New Roman
Trebuchet MS
Again, don't go overboard. Don't be silly with it. Unless you've got a background and training in Graphic Design and Typography trying to be clever will only break some hard and fast rules, and you may be turning people off reading your pages.
Background Color
If you want to highlight a big slab of text you'll need to nest it in a PARAGRAPH tag, otherwise it will highlight the words, but not the space between each paragraphed row.
Unless of course that that is the effect that you wanted... excuse me while I pad out a few extra lines of text so we can see the effect in action. Is that enough now? No? Okay just a few more words... and... I'm... done.
If you want to use it to highlight just a few words in a sentence you can sneak it in with the bold tag.
To pull off this technique use the instructions in the Basic HTML for Colors.
You'll be slipping this background-color: yellow; into the tag. Choose of course a color to suit. Be aware though that if it's a dark color you'll need to change the color of the text so it can still be readable.
Here's a little something I'm working on after a request from an active SquidU participant. Not sure if it's what she's after but here's a shot at it...
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
And here's the code...
Orange
<p style="padding: 5px; background-color: #FCF8C0; border: dotted 2px #FF9900;">TEXT GOES HERE</p>
Blue
<p style="padding: 5px; background-color: #E1E8F2; border: dotted 2px #00518A;">TEXT GOES HERE</p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Gray
<p style="padding: 10px; background-color: #F6F6F6; border: 1px dotted navy;">TEXT GOES HERE</p>
Text Size Large
With the font-size: medium; nested in the Bold tag (and remember, bold is then turned 'off').
With the font-size: medium; nested in the Bold tag (with bold left 'on').
With the font-size: large; nested in the Bold tag (and remember, bold is then turned 'off').
With the font-size: large; nested in the Bold tag (with bold left 'on').
With the font-size: x-large; nested in the Bold tag (and remember, bold is then turned 'off').
With the font-size: x-large; nested in the Bold tag (with bold left 'on').
With the font-size: xx-large; nested in the Bold tag (and remember, bold is then turned 'off').
With the font-size: xx-large; nested in the Bold tag (with bold left 'on').
The only time I've used the larger font is to do something special, like highlight a quote. [Example]
As you can see, the paragraph spacing leaves a lot to be desired. I'll be looking into how to fix that with the next update here on Advanced HTML.
Okay, I've figured it out! How exciting is that! And I'm just going to ramble on a bit more so you can see that it actually works. You use line-height: 1em; in the code.
Here's an example of the code...
<b style="font-size: xx-large; font-weight: normal; line-height: 1em;">Sample code</b>
Text Size Small
Perhaps you need to add some... fine print to your lens. For what ever reason. Maybe it's copyright information that you want communicated but you don't want it distracting from the content.
This is what you nest inside your Paragraph or Bold tags: font-size: xx-small; (be sure to turn the bold off with a font-weight: normal; otherwise it may get a little messy).
Strike Through
Use this inside your Bold tag: text-decoration: line-through;
Use sparingly. I think it is best reserved for comedic effect or some other special reason.
Printable Coupons
The iframe can be used to target a page that can be printed by itself. Click on the printer icon to see how it prints just the graphics (this no longer works as the iframe has now been disabled site-wide).


A step-by-step tutorial on how it used to do be done can be found here.
Capitalizing
This is what you use to pull it off: <b style="FONT-SIZE: 100px; FLOAT: left; COLOR: silver; LINE-HEIGHT: 70px; PADDING-TOP: 2px; FONT-FAMILY: times">Put Letter here</b>and continue the text without a break or space...
Here's a few more that I've been playing with, feel free to change colors, fonts, sizes and whatever else you wish to tweak...
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Integer urna. Aliquam ut nulla. Duis ac dolor. Vestibulum a justo vitae velit adipiscing mattis. Cras suscipit nisi nec eros. Proin euismod arcu ac urna. Suspendisse ipsum elit, tempor quis, laoreet eget, aliquam eu, mi. Quisque id urna a nunc lobortis tincidunt. Suspendisse fermentum. Nulla facilisi. Nullam non felis. Proin quam. Fusce risus sem, gravida eu, gravida ac, faucibus a, arcu. Aliquam rhoncus nisi eget orci. Fusce ut felis sit amet justo dapibus elementum. Quisque congue risus et lorem. Sed et ante. Pellentesque et massa vitae turpis varius venenatis. Cras imperdiet suscipit augue.
<b style="font-size: 35px; font-family: Georgia, Palatino; float: left; margin-right: 4px; line-height: 1em; color: #FFFFFF; background: #CC3300; padding: 0 5px; font-weight: normal;">L</b>orem ipsum, et cetera, et cetera...
Donec erat erat, fringilla vel, aliquet ut, elementum nec, ante. Nunc pulvinar, erat quis aliquet tincidunt, tellus justo pretium nulla, ac dictum nunc purus nec felis. Maecenas urna nisl, vehicula a, cursus nec, cursus non, purus. Fusce ultrices nulla. Etiam vitae dui. Donec urna urna, viverra et, ultrices vitae, convallis et, mi. Phasellus et est. Fusce id dolor. Nulla posuere ipsum ac risus. Donec adipiscing molestie massa. Donec pellentesque, massa nec ornare vestibulum, felis elit pretium odio, eget semper libero nunc vel pede. Donec felis. In porttitor, libero sed vestibulum condimentum, diam velit consectetuer sapien, id luctus magna est ac sapien. Duis viverra. Aliquam lacinia elit at ipsum. Nulla scelerisque dui nec risus. Aenean lobortis arcu id magna. In hac habitasse platea dictumst. Suspendisse a leo. Cras adipiscing risus ac felis.
<b style="font-size: 40px; font-family: Georgia, Palatino; float: left; margin-right: 4px; line-height: 1em; color: #FFFFFF; background: green; padding: 0 5px;">D</b>onec erat erat, et cetera, et cetera...
Proin quis velit. Vivamus nulla ipsum, dignissim et, condimentum et, consectetuer ac, neque. Pellentesque aliquet. Maecenas dolor. Nulla quis mauris quis pede mattis facilisis. Ut nunc. Pellentesque enim nunc, rhoncus sed, cursus vel, molestie sit amet, mauris. Proin tempus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Donec sit amet sapien. Quisque imperdiet. Aliquam erat volutpat. Aliquam ultrices
<b style="FONT-SIZE: 100px; FLOAT: left; COLOR: silver; LINE-HEIGHT: 70px; PADDING-TOP: 2px; FONT-FAMILY: times; border-bottom: medium; border-left: medium; border-right: medium; border-top: medium; border-style: groove; margin-right: 4px; padding-bottom: 6px; padding-left: 4px; padding-right: 4px;">P</b>roin quis velit. et cetera, et cetera...
Phasellus elementum turpis sed elit. Sed nonummy, augue in cursus mollis, nibh neque dictum elit, eget gravida metus est rutrum ligula. Morbi a turpis. Cras nec arcu nec ante convallis scelerisque. Ut in libero quis sem facilisis posuere. Pellentesque quam. Fusce id enim. Phasellus feugiat tristique sem. Morbi porttitor luctus enim. Donec mattis. Fusce quam nunc, porttitor non, condimentum in, consectetuer vitae, lectus. Sed non magna id pede lobortis pulvinar. Integer ornare tellus quis diam tincidunt aliquet. In id nisl et erat cursus dapibus. Duis at eros at massa aliquam euismod.
<b style="FONT-SIZE: 100px; FLOAT: left; background: silver; color: white; LINE-HEIGHT: 70px; PADDING-TOP: 2px; FONT-FAMILY: times; border-bottom: medium; border-left: medium; border-right: medium; border-top: medium; border-style: inset; margin-right: 4px; padding-bottom: 6px; padding-left: 4px; padding-right: 4px;">P</b>hasellus elementum turpis sed elit. et cetera, et cetera...
Suspendisse fringilla lectus quis magna. Nulla tristique turpis at est. Pellentesque nec justo. Maecenas auctor pede at sem. Nulla auctor euismod nulla. Fusce eu ligula. Aliquam erat volutpat. Morbi vestibulum. Nunc cursus. Vivamus suscipit, felis ut pulvinar aliquet, neque velit convallis diam, ac sodales pede odio non quam. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos hymenaeos. Curabitur sit amet sapien. Mauris consequat diam non dolor. Duis et ligula et justo tincidunt placerat. Praesent nisi nibh, pretium ut, varius eu, rutrum non, nisi. Morbi posuere placerat purus. Suspendisse potenti.
<b style="FONT-SIZE: 100px; FLOAT: left; background: #EBEBEB; color: gold; LINE-HEIGHT: 70px; PADDING-TOP: 2px; FONT-FAMILY: times; border-bottom: medium; border-left: medium; border-right: medium; border-top: medium; border-style: ridge; margin-right: 4px; padding-bottom: 6px; padding-left: 4px; padding-right: 4px;">S</b>uspendisse fringilla lectus quis magna. et cetera, et cetera...
The Title Attribute
What are the benefits for doing such a thing?
First, as demonstrated above, you can provide valuable information to your visitors with descriptive link titles and descriptive text about other page elements. Think of it as an enhanced browsing experience.
Also there are many search engine ranking algorithms read the text in TITLE attributes as regular page content. Therefore you can increase your page's keyword density score and relevancy for your targeted keywords.
All you have to do is add title="your text here" in the nested tags of your hyperlink, just after the URL will do.
You can also add the Title Attribute to text that isn't a hyperlink. You can figure out why you'd do such a thing for yourself. It's a good idea though to add a bit of decoration to it so 1) people will know it's there and 2) make it subtly different so they don't mistake it for being a real hyperplink. eg:
Adding extra instructions using the Title Attribute is a clever way to give additional information.
And of course, here's the code!
<b style="border-bottom-style: dashed; font-weight: normal; cursor: help; border-bottom-width: thin; border-bottom-color: Green;" title="put your description here">put your text here</b>
You'll notice I gave it a bottom border, which enabled me to make it dashed. I made the width thin because quite frankly the default was far too thick. I added the question-mark cursor as an extra means of communicating that it's not a link to click on. There are other things a person can do to change the formatting but I'll leave it to the more adventurous to go out and figure that out for themselves.
Spoiler Text
You may not wish to discuss or reveal some important twists and turns (or fatalities) within the book that would otherwise ruin the experience for those not yet in the possession of it, or have just started reading the latest release.
But you'd also like express an opinion or two that involves such plot twists. What to do?
Hide the spoiler information with HTML!
And you can let people know by saying something like this...
CAUTION: Spoiler warning. Use your mouse and click and drag over the block of gray to reveal the spoiler.
In here you can write ANYTHING AT ALL and not spoil it for those not yet lucky enough to have received the book because they ordered it online and the seller obviously thought a slow boat from China would be the best way for delivery
And here's the code to do it...
<p style="color: gray; background-color: gray;">Put your spoiler content here</p>
You could also use the Title Attribute (see module above) for slipping in some spoilers (Mouse Over for Spoiler Text).
Quoting
I'm working on a way to QUOTE text and have some spiffy looking quotation marks that rely solely on text (no images) with it wrapping the quoted text around the larger text quotation marks. The tricky bit is getting the back end quotation marks to play nicely too. Getting it to indent is a bonus too. So far it's a work in progress.
But I do have this one that is working...
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
Here's the code...
<b style="float: left; font-weight: normal; font: 14px/22px normal helvetica, sans-serif; margin-top: 10px; margin-bottom: 10px; margin-left: 50px; padding-left: 15px; border-left: 3px solid #ccc;">PUT YOUR TEXT IN HERE!!!</b>
Lensmaster Asiacue has a very interesting way of quoting people in this lens.
Using List tags they've pulled off a nice effect. It indents nicely. There's a subtle use of grays for backgrounds and borders, though I'm sure a person could find other complementary and tasteful colors to enhance the look. Or if maybe even go for something distracting and disturbing if you're so inclined.
Asiacue used a 1 pixel for the dotted border. Here I'm demonstrating it with a 2 pixel wide dotted border so it's easier to see.
- Add your information here.
- Add your information here.
- Add your information here.
Here's the code...
<ul style="list-style-type:none; font-style: italic;">
<li style="font-size: x-small; background-color: #EEEEEE; border: dotted 2px #CCCCCC;">Add your information here.</li>
<li style="font-size: x-small; background-color: #EEEEEE; border: dotted 2px #CCCCCC;">Add your information here.</li>
<li style="font-size: x-small; background-color: #EEEEEE; border: dotted 2px #CCCCCC;">Add your information here.</li>
</ul>
Here's the code if you just want to use it as a one off...
<ul style="list-style-type:none; font-style: italic;">
<li style="font-size: x-small; background-color: #EEEEEE; border: dotted 2px #CCCCCC;">Add your information here.</li>
</ul>
You can substitute dotted with the following solid, dashed, double, groove, ridge, inset or outset for different border styles.
Quotes for SquidWho
"I had the right to remain silent... but I didn't have the ability."
Here's the code...
<b style="color:#1F94BF; line-height: 1em; font-size:35px; font-family:'courier new'; text-align:left; padding:10px 10px;">“PUT YOUR QUOTE IN HERE”</b>
The “ and ” gives you nice left and right "quotation" marks which for some reason don't work in the Text/Write Module but they do work in the Amazon Module.
So it makes for an interesting way to grab peoples attention to a quote from a DVD or book that you've got in your lens.
See an example of it here.
Magazine Style Pull Quote
Here's a screenshot of what it looks like...

You can see it in use here.
I am unable to give a blow by blow description on how to customize this code on an individual basis, but I will give the code as is, and for the adventurous among you, you can tweak it to suit...
<p style="float:right;width:220px;margin-top:5px;margin-bottom:15px;margin-left:10px;padding-bottom:10px;font-family:Arial, Helvetica, Georgia;font-size: 28px;line-height:24px; color:#FF6600; text-align: right;"><b style="color:gold;">"As adults, we are</b> discriminated<b> against.</b>As adults, we are an<b style="color:orange"> oppressed majority</b> because nobody writes us fairy tales.<b style="color:gold;">I think the problem</b> is not that we grow out of fairy tales.<b> The problem is nobody</b> writes us fairy tales; <b style="color:gold;">nobody gives us fairy tales</b> that are as satisfying,<b> as meaty, as filled with real</b> people and real incident, <b>as the things that we</b> remember from when<b style="color:orange;"> we were children"</b></p>
Superscript and Subscript
What is Superscript and Subscript?
A subscript or superscript is a number, figure, symbol, or indicator that appears smaller than the normal line of type and is set slightly below or above it - subscripts appear below the baseline, while superscripts are above. Subscripts and superscripts are typically used in formulas, mathematical expressions, and descriptions of chemical compounds or isotopes, but have many other uses as well. (Source)
x3
x3
And here is the code...
x<b style="font-weight: normal; vertical-align: super; font-size: 7pt;">3</b>
x<b style="font-weight: normal; vertical-align: sub; font-size: 7pt;">3</b>
You can of course change the point (pt) size to whatever you feel works best.
Small Caps
Small caps are often used for text that is all uppercase; this makes the run of capital letters seem less jarring to the reader. For example, the style of many American publications, including the Atlantic Monthly and USA Today, is to use small caps for acronyms and initialisms longer than three letters
Small caps are commonly used for showing keyboard shortcuts; for example, "The keyboard shortcut in Microsoft Word for small caps is Ctrl + Shift + K".
Here is the code...
<b style="font-weight: normal; font-variant: small-caps;">Ctrl + Shift + K</b>
Math Symbols
And for them I have put together this module.
multiplication → × → ×
division → ÷ → ÷
fraction 1/4 → ¼ → ¼
fraction 1/2 → ½ → ½
fraction 3/4 → ¾ → ¾
for all → ∀ → ∀
part → ∂ → ∂
exists → ∃ → ∃
empty → ∅ → ∅
nabla → ∇ → ∇
isin → ∈ → ∈
notin → ∉ → ∉
ni → ∋ → ∋
prod → ∏ → ∏
sum → ∑ → ∑
minus → − → −
lowast → ∗ → ∗
square root → √ → √
proportional to → ∝ → ∝
infinity → ∞ → ∞
angle → ∠ → ∠
and → ∧ → ∧
or → ∨ → ∨
cap → ∩ → ∩
cup → ∪ → ∪
integral → ∫ → ∫
therefore → ∴ → ∴
simular to → ∼ → ∼
approximately equal → ≅
almost equal → ≈ → ≈
not equal → ≠ → ≠
equivalent → ≡ → ≡
less or equal → ≤ → ≤
greater or equal → ≥ → ≥
subset of → ⊂ → ⊂
superset of → ⊃ → ⊃
not subset of → ⊄ → ⊄
subset or equal → ⊆ → ⊆
superset or equal → ⊇ → ⊇
circled plus → ⊕ → ⊕
cirled times → ⊗ → ⊗
perpendicular → ⊥ → ⊥
dot operator → ⋅ → ⋅
Spacing
Letter Spacing
This is what happens when we make the Letter Spacing -3 pixels
<b style="font-weight: normal; letter-spacing: -3px;">This is what happens when we make the Letter Spacing -3 pixels</b>
This is what happens when we make the Letter Spacing half a centimeter
<b style="color: green; font-weight: normal; letter-spacing: 0.5cm;">This is what happens when we make the Letter Spacing half a centimeter</b>
Word Spacing
This is what happens when we increase the Word Spacing
<b style="color: green; font-weight: normal; word-spacing: 30px;">This is what happens when we increase the Word Spacing</b>
I imagine Word Spacing would be handy if you wanted to hide a spoiler. And to reveal the spoiler a person would have to copy and paste the information to their Word Processor or a text document.
I imagine Word Spacing would be handy if you wanted to hide a spoiler. And to reveal the spoiler a person would have to copy and paste the information to their Word Processor or a text document.
Spiffing up your Poll Options
They say a picture is worth a thousand words. Which is correct. Because sometimes it would take that many words to adequately describe something that can be understood quickly at a glance. I like the way Lensmaster ShellHarris has incorporated images into her Jean Grey Poll Module.
Here I used Squidoo's own rating stars to allow for a 1 to 5 star rating for fans to vote on the song.
I took that one step further here by using an image that complements the theme of the topic.
In case you're new and unaware or need a reminder here's how you insert images.
Hyperlinks (clickable links) can also be inserted into Poll Options.
I stumbled on a cool visual look while experimenting with some HTML. And here's the code to pull off the inset box type effect you can see in the accompanying Poll Module...
<li style="list-style-type: none; font-size: x-small; background-color: #EEEEEE; border: inset 2px #CCCCCC;">Write your options in here</li>
Lists: Ordered, Unordered and Bulleted
I've posted this as a separate lens because it is quite detailed and requires a lot of modules to demonstrate the use of bulleted lists in an organized fashion.-
Bulleted and Ordered Lists
-
You can easily make bulleted or numbered lists in the Text List module. Too easy! But if you want more control and more of a say on how the information is presented you'll need to learn to use three HTML tags. Lets say you want to display a list in...
Whistle While You Work
♪ = ♪
♫ = ♫
♬ = ♬
♭ = ♭
♮ = ♮
♯ = ♯
Change Your Cursor
Auto
Code: <a href="#" style="cursor:auto">Auto</a>
Crosshair
Code: <a href="#" style="cursor:crosshair">Crosshair</a>
Default
Code: <a href="#" style="cursor:default">Default</a>
Pointer
Code: <a href="#" style="cursor:pointer">Pointer</a>
Move
Code: <a href="#" style="cursor:move">Move</a>
e-resize
Code: <a href="#" style="cursor:e-resize">e-resize</a>
ne-resize
Code: <a href="#" style="cursor:ne-resize">ne-resize</a>
nw-resize
Code: <a href="#" style="cursor:nw-resize">nw-resize</a>
n-resize
Code: <a href="#" style="cursor:n-resize">n-resize</a>
se-resize
Code: <a href="#" style="cursor:se-resize">se-resize</a>
sw-resize
Code: <a href="#" style="cursor:sw-resize">sw-resize</a>
s-resize
Code: <a href="#" style="cursor:s-resize">s-resize</a>
w-resize
Code: <a href="#" style="cursor:w-resize">w-resize</a>
text
Code: <a href="#" style="cursor:text">text</a>
wait
Code: <a href="#" style="cursor:wait">wait</a>
help
Code: <a href="#" style="cursor:help">help</a>
iframes
We introduced you to iframes in the Basic HTML lens. We had some fantastic times with iframes, but it has since been disabled.-
iframe
-
R.I.P. The iframe Tag. Deceased 12th July 2007. The humble iframe tag... actually, the iframe tag is anything but humble. It's quite powerful. And it opens up a window of opportunity for webmasters and lensmasters alike... Except for lensmasters,...
Highly Recommended
You know the drill!
Did this lens rock your world? Then leave some feedback!
And add Advanced HTML to your Squidoo favorites by clicking here.
Please: No links to outside websites in your Guestbook submissions. No links to your other Squidoo lenses if they are not specifically showing off what you have learned in this tutorial. All submissions will be deleted, no matter how good your question or comment, without exceptions.
-
Reply
- mekimare mekimare Oct 22, 2009 @ 10:31 pm
- Awesome information! Thanks for sharing
-
Reply
- SoyCandleLover-Maker SoyCandleLover-Maker Oct 22, 2009 @ 6:33 am
- I keep coming back to see your great guide, but I never seem to take the time to use your info cuz I keep working on (re-working?) lens. Maybe some will stick if I keep returning? :D
-
Reply
- nickupton nickupton Oct 19, 2009 @ 11:58 pm
- Thanks again, I seem to keep coming back.
-
Reply
- strayspay strayspay Oct 17, 2009 @ 7:06 pm
- Very informative! Thanks for the information.
-
Reply
- PsyQuin PsyQuin Oct 17, 2009 @ 4:08 pm
- Very helpful indeed. :)
- Load More
Other Lenses in the How To Squidoo series...
-
Basic HTML for Squidoo
-
Before you start reading all this, you may want to open Advanced HTML in a new tab, because you'll be wanting to check it out as soon as you've finished this! You can use basic HTML in a few of the lens modules. Mostly used to create hyperlinks (the...
-
I'm a Lensmaster! What now?
-
This lens deals with the ins and outs and tricks and tips that will help you make your next (or first) Squidoo Lens. Other information you should read (if you haven't already)... All About Squidoo: What others have had to say about Squidoo, and it...
-
Your Lensmasters Bio
-
Make your Lensmaster Biography into a squidlicious appetizer.
-
Squidoo Modules
-
This lens demonstrates a selection of some of the most used and useful Squidoo Modules. You'll see them in their natural environment, with content or product included. Accompanying each is a description of what the module does. To start with, this is...
-
Unimproved Lenses
-
Whoops! Looks like you have too many "unimproved" lenses right now (this means lenses that are probably empty, unpublished, or have fewer than 3 modules). Please work on your existing lenses before starting a new one. Thanks for helping us...
by N376
Glen likes to write. If it's something that he hasn't already enjoyed or experienced in life if you so much as throw a topic at him and if he finds it...
(more)
