<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-7019451</id><updated>2012-02-14T06:32:22.799-05:00</updated><title type='text'>Html Tips and Tricks</title><subtitle type='html'>You will be able to add tons of features to your website with these useful and stylish HTML tips and tricks, presented to you by the award winning site htmltips.blogspot.com. You can even use these as myspace tips and tricks.</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>53</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-7019451.post-113892584624672717</id><published>2006-02-02T18:53:00.000-05:00</published><updated>2006-02-03T15:43:00.426-05:00</updated><title type='text'>Images Clickable in Different Areas</title><content type='html'>Before, looking at these HTML tips and tricks, &lt;a href="http://htmltips.blogspot.com/2005/05/links-and-images-basics.html"&gt;be sure to know the tips on links and images.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Look at the following:&lt;br /&gt;&lt;img src="http://www.google.com/images/logo.gif" usemap="#GoogleImageMap"&gt;&lt;map name="GoogleImageMap"&gt;&lt;area shape="rect" coords="0,0,68,109" href="http://en.wikipedia.org/wiki/G"&gt;&lt;area shape="rect" coords="68,0,161,109" href="http://en.wikipedia.org/wiki/O"&gt;&lt;area shape="rect" coords="161,0,201,109" href="http://en.wikipedia.org/wiki/G"&gt;&lt;area shape="rect" coords="201,0,227,109" href="http://en.wikipedia.org/wiki/L"&gt;&lt;area shape="rect" coords="227,0,275,109" href="http://en.wikipedia.org/wiki/E"&gt;&lt;/map&gt;&lt;br /&gt;&lt;br /&gt;It's one image (the Google logo). However, try clicking on different parts of the image. It leads you to different web pages. The code below made the HTML tip:&lt;br /&gt;&lt;br /&gt;&lt;font size=1&gt;&lt;b&gt;&amp;lt;img src="http://www.google.com/images/logo.gif"&lt;br /&gt;usemap=#&lt;u&gt;GoogleImageMap&lt;/u&gt;&amp;gt;&lt;br /&gt;&amp;lt;map name=GoogleImageMap&amp;gt;&amp;lt;area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=68,0,161,109 href="http://en.wikipedia.org/wiki/O"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=161,0,201,109 href="http://en.wikipedia.org/wiki/G"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=201,0,227,109 href="http://en.wikipedia.org/wiki/L"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=227,0,275,109 href="http://en.wikipedia.org/wiki/E"&amp;gt;&lt;br /&gt;&amp;lt;/map&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;The first line inserts an image, called logo.gif. &lt;b&gt;usemap=#&lt;span style="font-style:italic;"&gt;GoogleImageMap&lt;/span&gt;&lt;/b&gt; calls the clickable areas GoogleImageMap. You can change the name GoogleImageMap to any other name you want, like GoogleLetters. Then, you have the 'Image Map':&lt;br /&gt;&lt;br /&gt;&lt;font size=1&gt;&lt;b&gt;&amp;lt;map name=&lt;u&gt;GoogleImageMap&lt;/u&gt;&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=&lt;i&gt;0,0,68,109&lt;/i&gt; href="http://en.wikipedia.org/wiki/G"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=&lt;i&gt;68,0,161,109&lt;/i&gt; href="http://en.wikipedia.org/wiki/O"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=&lt;i&gt;161,0,201,109&lt;/i&gt; href="http://en.wikipedia.org/wiki/G"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=&lt;i&gt;201,0,227,109&lt;/i&gt; href="http://en.wikipedia.org/wiki/L"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=227,0,275,109 href="http://en.wikipedia.org/wiki/E"&amp;gt;&lt;br /&gt;&amp;lt;/map&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Make sure you change GoogleImageMap to the name of your image map. The italicized numbers stand for the right, top, left and bottom edges of each clickable rectangle area. The E letter, for example, has 227 as the right edge, 0 as the top edge, 275 as the left edge and 109 as the bottom edge. To find the coordinates of a clickable rectangle in any picture, you can copy and paste the picture into Paint. &lt;i&gt;(See Note below to find out how to find out the numbers.)&lt;/i&gt; The href="http://..." tells which web page the viewer will go to when he/she clicks on the rectangle.&lt;br /&gt;&lt;br /&gt;Try clicking everywhere around the E. You will see that in the rectangle defined by the coordinates 227,0,275,109 goes to &lt;a href="http://en.wikipedia.org/wiki/E"&gt;http://en.wikipedia.org/wiki/E&lt;/a&gt;.&lt;br /&gt;&lt;img src="http://www.google.com/images/logo.gif" usemap="#GoogleImageMap"&gt;&lt;map name="GoogleImageMap"&gt;&lt;area shape="rect" coords="0,0,68,109" href="http://en.wikipedia.org/wiki/G"&gt;&lt;area shape="rect" coords="68,0,161,109" href="http://en.wikipedia.org/wiki/O"&gt;&lt;area shape="rect" coords="161,0,201,109" href="http://en.wikipedia.org/wiki/G"&gt;&lt;area shape="rect" coords="201,0,227,109" href="http://en.wikipedia.org/wiki/L"&gt;&lt;area shape="rect" coords="227,0,275,109" href="http://en.wikipedia.org/wiki/E"&gt;&lt;/map&gt;&lt;br /&gt;&lt;br /&gt;Remember, you can add and delete areas in order to add or remove clickable rectangles:&lt;br /&gt;&lt;br /&gt;&lt;font size=1&gt;&lt;b&gt;&amp;lt;img src="http://www.google.com/images/logo.gif"&lt;br /&gt;usemap=#&lt;u&gt;SecondGoogleImageMap&lt;/u&gt;&amp;gt;&lt;br /&gt;&amp;lt;map name=SecondGoogleImageMap&amp;gt;&amp;lt;area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G"&amp;gt;&lt;br /&gt;&amp;lt;area shape=rect coords=201,0,275,109 href="http://en.wikipedia.org/wiki/Le"&amp;gt;&lt;br /&gt;&amp;lt;/map&amp;gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;&lt;br /&gt;Above I have removed the rectangles for O,G,L,E but added a rectangle for Le. Here is the result:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.google.com/images/logo.gif" usemap=#SecondGoogleImageMap&gt;&lt;br /&gt;&lt;map name=SecondGoogleImageMap&gt;&lt;area shape=rect coords=0,0,68,109 href="http://en.wikipedia.org/wiki/G"&gt;&lt;area shape=rect coords=201,0,275,109 href="http://en.wikipedia.org/wiki/Le"&gt;&lt;/map&gt;&lt;br /&gt;&lt;br /&gt;These tips and tricks can add a few touches of proffesionalism to the pictures on your web page! Remember to check out a few other tips in this web site!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;NOTE: To find out the numbers next to coords that define a rectangle, copy and paste the image into Paint. Move your mouse across the image and look at the bottom left corner of Paint. You will see two numbers (for example, 47,56). 47 shows how far left your mouse is, and 56 shows how for down your mouse is. To find out the first two numbers you need to put next to &lt;b&gt;coords=&lt;/b&gt;, move your mouse to the upper left of the rectangle you want, then look at the two numbers at the corner. To find out the last two numbers, move your mouse to the lower right of the rectangle, then look at the two numbers at the corner.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-113892584624672717?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/113892584624672717/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=113892584624672717' title='26 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/113892584624672717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/113892584624672717'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2006/02/images-clickable-in-different-areas.html' title='Images Clickable in Different Areas'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>26</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111631836814869766</id><published>2005-05-17T03:37:00.000-04:00</published><updated>2005-05-17T19:38:04.986-04:00</updated><title type='text'>Build a Web Page</title><content type='html'>This tip will tell you exactly how to code your own HTML website.&lt;br /&gt;&lt;br /&gt;First, remember that most tags must be eventually closed. The syntax would be: &amp;lt;tag&amp;gt; CONTENT &amp;lt;/tag&amp;gt;.&lt;br /&gt;&lt;br /&gt;Open a text editor such as notepad, or the HTML editor for your hosting service.&lt;br /&gt;&lt;br /&gt;The first tag in your website should be &amp;lt;html&amp;gt;, which starts the HTML site.&lt;br /&gt;Immediately after this should come the &amp;lt;head&amp;gt; tag.&lt;br /&gt;&lt;br /&gt;So far, you should have the following:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;The next step is to enter the title of your website.  This is what shows up in the title bar of the internet browser.  Put the title between the &amp;lt;title&amp;gt; and &amp;lt;/title&amp;gt;.  Then, end the head with &amp;lt;/head&amp;gt;.  You will end up with:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;TITLE&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Other data to put into the head includes metadata and stylesheet data.&lt;br /&gt;&lt;br /&gt;The next step is to add the body of your website.  This is where all the important stuff goes.  Start out the body with the &amp;lt;body&amp;gt; tag.  In a basic website, all the real content goes in the body.&lt;br /&gt;&lt;br /&gt;The most basic way to write the body is to simply write a heading, then type.&lt;br /&gt;&lt;br /&gt;Within the body, start off by writing the &lt;a href="http://htmltips.blogspot.com/2005/05/tips-on-headings.html"&gt;first heading&lt;/a&gt;.  This should be big, so the &amp;lt;h1&amp;gt; tag should do the trick.  After that, simply write the text of the site. Remember the syntax for making links:&lt;br /&gt;&lt;br /&gt;&lt;code&gt; &amp;lt;a href="http://www.linktarget.com"&amp;gt;LINK&amp;lt;/a&amp;gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;And for making images:&lt;br /&gt;&lt;br /&gt;&lt;code&gt; &amp;lt;img src="http://imagesite.com/image.jpg"&amp;gt; &lt;/code&gt;.&lt;br /&gt;&lt;br /&gt;Remember, most HTML Tips can be simply inserted into the body and used immediately.&lt;br /&gt;&lt;br /&gt;Finish off the body with &amp;lt;/body&amp;gt;, and the body is done.&lt;br /&gt;&lt;br /&gt;The code with the body included should look like:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;TITLE&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;h1&amp;gt;THE SITE&amp;lt;/h1&amp;gt;&lt;br /&gt;blablabla&lt;br /&gt;&amp;lt;a href="http://www.linktarget.com"&amp;gt;LINK&amp;lt;/a&amp;gt;&lt;br /&gt;IMAGE:&lt;br /&gt;&amp;lt;img src="http://imagesite.com/image.jpg"&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;Remember, you still have 1 more tag to close: the &amp;lt;html&amp;gt; tag.  Close it with &amp;lt;/html&amp;gt;, and your website is complete.  The final code:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&amp;lt;html&amp;gt;&lt;br /&gt;&amp;lt;head&amp;gt;&lt;br /&gt;&amp;lt;title&amp;gt;TITLE&amp;lt;/title&amp;gt;&lt;br /&gt;&amp;lt;/head&amp;gt;&lt;br /&gt;&amp;lt;body&amp;gt;&lt;br /&gt;&amp;lt;h1&amp;gt;THE SITE&amp;lt;/h1&amp;gt;&lt;br /&gt;blablabla&lt;br /&gt;&amp;lt;a href="http://www.linktarget.com"&amp;gt;LINK&amp;lt;/a&amp;gt;&lt;br /&gt;IMAGE:&lt;br /&gt;&amp;lt;img src="http://imagesite.com/image.jpg"&amp;gt;&lt;br /&gt;&amp;lt;/body&amp;gt;&lt;br /&gt;&amp;lt;/html&amp;gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;If you want to see what that code looks like in a real web browser, go to this page, which uses the exact HTML code above:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://gklitt.home.comcast.net/test.html"&gt;Test Site&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Your basic website is complete!  For more advice on tables, frames, text formatting, Javascript, etc., look at the rest of the tips on this site.  Almost all of them can simply be inserted in the body.  Now you know how to make your website from HTML!&lt;br /&gt;&lt;br /&gt;Also, if you are using Blogger, you can go to the "template" section of the dashboard, and edit the template, which is raw HTML.  Be careful not to change too much stuff.  The beginning data is stylesheet data, so don't mess around unless you know what you're doing.  However, you can find the sidebar, and mess around with that quite freely.&lt;br /&gt;&lt;br /&gt;You can always use a program like Frontpage or Dreamweaver, but raw coding is always the best way to make your website exactly like you want it!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111631836814869766?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111631836814869766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111631836814869766' title='19 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111631836814869766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111631836814869766'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/build-web-page.html' title='Build a Web Page'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>19</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111619939773105193</id><published>2005-05-15T19:19:00.000-04:00</published><updated>2006-02-02T20:00:01.693-05:00</updated><title type='text'>Links and Images Basics</title><content type='html'>These tips and tricks will teach you how to put a link or an image into an html page.&lt;br /&gt;&lt;br /&gt;To put a link, use the following code:&lt;br /&gt;&lt;b&gt;&amp;lt;a href="http://google.com"&amp;gt;Google&amp;lt;/a&amp;gt;&lt;/b&gt;&lt;br /&gt;The result is as follows:&lt;br /&gt;&lt;a href="http://google.com"&gt;Google&lt;/a&gt;&lt;br /&gt;Make sure you change "http://google.com" to the address of the site that you want to link to and that you change "Google" to the text that you want users to see.&lt;br /&gt;&lt;br /&gt;To put an image into your web page, use the following code:&lt;br /&gt;&lt;b&gt;&amp;lt;img src="http://www.google.com/intl/en/images/logo.gif"&amp;gt;&lt;/b&gt;&lt;br /&gt;The result of that code is as follows:&lt;br /&gt;&lt;img src="http://www.google.com/intl/en/images/logo.gif"&gt;&lt;br /&gt;Make sure that you change "http://www.google.com/intl/en/images/logo.gif" to the address of the image you want to display.&lt;br /&gt;&lt;br /&gt;So those are two basic html tips!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111619939773105193?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111619939773105193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111619939773105193' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111619939773105193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111619939773105193'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/links-and-images-basics.html' title='Links and Images Basics'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111617904326046798</id><published>2005-05-15T13:39:00.000-04:00</published><updated>2005-05-15T13:44:03.266-04:00</updated><title type='text'>New Line Tips</title><content type='html'>Sometimes you want there to be a large number of empty lines.&lt;br /&gt;If you do, you will have to use &lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;br /&gt;Simply insert &lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt; wherever you want there to be a new line.&lt;br /&gt;For example, if you want 5 lines to be skipped, use this html code:&lt;br /&gt;&lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;b&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;br /&gt;It will create this:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;You can put the br tag nearly anywhere in your html document. Make sure that it is in the body, however.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111617904326046798?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111617904326046798/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111617904326046798' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617904326046798'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617904326046798'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/new-line-tips.html' title='New Line Tips'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111617790004247588</id><published>2005-05-15T13:15:00.000-04:00</published><updated>2005-05-15T13:26:24.533-04:00</updated><title type='text'>Tips on Headings</title><content type='html'>These html tips and tricks will show you different types of headings.&lt;br /&gt;&lt;br /&gt;Look at the following html code:&lt;br /&gt;&lt;b&gt;&amp;lt;h2&amp;gt;Heading 2&amp;lt;/h2&amp;gt;&lt;/b&gt;&lt;br /&gt;It creates this heading:&lt;br /&gt;&lt;h2&gt;Heading 2&lt;/h2&gt;&lt;br /&gt;Now looking at this html code:&lt;br /&gt;&lt;b&gt;&amp;lt;h3&amp;gt;Heading 3&amp;lt;/h3&amp;gt;&lt;/b&gt;&lt;br /&gt;It now creates this slightly smaller heading:&lt;br /&gt;&lt;h3&gt;Heading 3&lt;/h3&gt;&lt;br /&gt;The 2 and 3 in H2 and H3 can be changed to any number between 1 and 6 to make different sorts of headings.&lt;br /&gt;Here is an example of some code that uses headings:&lt;br /&gt;&lt;b&gt;&amp;lt;h4&amp;gt;Heading 4&amp;lt;/h4&amp;gt;&lt;br /&gt;Heading 4 is the fourth most important heading.&lt;br /&gt;&amp;lt;h5&amp;gt;Heading 5&amp;lt;/h5&amp;gt;&lt;br /&gt;Heading 5 is the fifth most important heading.&lt;/b&gt;&lt;br /&gt;The code results in the following:&lt;br /&gt;&lt;h4&gt;Heading 4&lt;/h4&gt;&lt;br /&gt;Heading 4 is the fourth most important heading.&lt;br /&gt;&lt;h5&gt;Heading 5&lt;/h5&gt;&lt;br /&gt;Heading 5 is the fifth most important heading.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Related Tip:&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;Tips for Formatting Text&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111617790004247588?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111617790004247588/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111617790004247588' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617790004247588'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617790004247588'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/tips-on-headings.html' title='Tips on Headings'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111617719714120275</id><published>2005-05-15T13:05:00.000-04:00</published><updated>2005-05-15T13:14:05.893-04:00</updated><title type='text'>Fun Tips and Tricks</title><content type='html'>These html tips and tricks will show you some rarely-used html tags.&lt;br /&gt;&lt;br /&gt;All these tags will show the exact same primitive-looking text:&lt;br /&gt;&lt;b&gt;&amp;lt;code&amp;gt;&lt;br /&gt;&amp;lt;kbd&amp;gt;&lt;br /&gt;&amp;lt;tt&amp;gt;&lt;br /&gt;&amp;lt;samp&amp;gt;&lt;/b&gt;&lt;br /&gt;For example, look at the following code:&lt;br /&gt;&lt;b&gt;&amp;lt;kbd&amp;gt;Text style that can be used to show programming code or basic, boring texts&amp;lt;/kbd&amp;gt;&lt;/b&gt;&lt;br /&gt;That code will create this:&lt;br /&gt;&lt;kbd&gt;Text style that can be used to show programming code or basic, boring texts&lt;/kbd&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111617719714120275?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111617719714120275/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111617719714120275' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617719714120275'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111617719714120275'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/fun-tips-and-tricks.html' title='Fun Tips and Tricks'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111610811267120478</id><published>2005-05-14T17:51:00.000-04:00</published><updated>2005-05-14T18:10:22.983-04:00</updated><title type='text'>Pre-Formatted Text</title><content type='html'>These tips and tricks will allow you to have greater control over text.&lt;br /&gt;&lt;br /&gt;To preformat text, you will need to look at the following html:&lt;br /&gt;&lt;br /&gt;&lt;b&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;This text is&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;preformatted&lt;br /&gt;&amp;lt;/pre&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;It will display the following:&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;      This text is&lt;br /&gt;           preformatted&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;If you simply were to remove the &lt;b&gt;&amp;lt;pre&amp;gt;&lt;/b&gt; tag, like this:&lt;br /&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;This text is&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;preformatted&lt;/b&gt;&lt;br /&gt;Then this text would be displayed:&lt;br /&gt;&lt;br /&gt;      This text is&lt;br /&gt;           preformatted&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://home.comcast.net/~nilsmolina/pretag.html"&gt;Here is another example&lt;/a&gt; of the uses of preformatting text.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111610811267120478?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111610811267120478/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111610811267120478' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111610811267120478'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111610811267120478'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/pre-formatted-text.html' title='Pre-Formatted Text'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111603611864301727</id><published>2005-05-13T21:05:00.000-04:00</published><updated>2005-05-14T18:11:24.763-04:00</updated><title type='text'>Javascript: Rollover Buttons</title><content type='html'>These javascript tips and tricks will teach you how to make image links that change as you put your mouse over them. It is simple.&lt;br /&gt;&lt;br /&gt;First, you need two images. One will be the image when the link is not being touched, the other image is when the link has been activitated.&lt;br /&gt;In this case, I am using these two images:&lt;br /&gt;&lt;img src="http://www.blogblog.com/tictac/tictac_orange.gif"&gt;&lt;br /&gt;&lt;img src="http://www.blogblog.com/tictac/tictac_green.gif"&gt;&lt;br /&gt;&lt;br /&gt;Second, you need to put this code &lt;u&gt;in between the &lt;b&gt;&amp;lt;head&amp;gt;&lt;/b&gt; and the &lt;b&gt;&amp;lt;/head&amp;gt;&lt;/b&gt;&lt;/u&gt; on the page that the rollover link is going to be on:&lt;br /&gt;&lt;b&gt;&amp;lt;SCRIPT LANGUAGE=&amp;quot;Javascript&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;!--image1= new Image( );image1.src=&lt;br /&gt;&amp;quot;&lt;i&gt;http://www.blogblog.com/tictac/tictac_orange.gif&lt;/i&gt;&lt;br /&gt;&amp;quot;;image2= new Image ();image2.src=&lt;br /&gt;&amp;quot;&lt;i&gt;http://www.blogblog.com/tictac/tictac_green.gif&lt;/i&gt;&amp;quot;;&lt;br /&gt;//--&amp;gt;&amp;lt;/SCRIPT&amp;gt;&lt;/b&gt;&lt;br /&gt;Make sure that you change the two URLs (in italics). The first one is to the image of when the link is not activitated, and the second is to the image when the link is touched.&lt;br /&gt;&lt;br /&gt;Finally, you insert this HTML code in the main part of your web page, and you you will get a rollover button that links to another site.&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&amp;lt;A HREF=&amp;quot;&lt;i&gt;http://htmltips.blogspot.com.html&lt;/i&gt;&amp;quot; onmouseover=&amp;quot;mybutton.src='&lt;br /&gt;&lt;i&gt;http://www.blogblog.com/tictac/tictac_orange.gif&lt;/i&gt;';&amp;quot; &lt;br /&gt;onmouseout=&amp;quot;mybutton.src=&lt;br /&gt;'&lt;i&gt;http://www.blogblog.com/tictac/tictac_green.gif&lt;/i&gt;&lt;br /&gt;;&amp;quot;&amp;gt; &amp;lt;IMG SRC=&amp;quot;&lt;i&gt;http://www.blogblog.com/tictac/tictac_green.gif&lt;/i&gt;&amp;quot; name=&amp;quot;mybutton&amp;quot;&amp;gt;&amp;lt;/A&amp;gt;&lt;/span&gt;&lt;br /&gt;As usual, make sure that you change the code in italics to match your needs.&lt;br /&gt;&lt;br /&gt;The result of these three steps is as follows:&lt;br /&gt;&lt;A HREF="htmltips.blogspot.html" onmouseover="mybutton.src='http://www.blogblog.com/tictac/tictac_orange.gif';" onmouseout="mybutton.src='http://www.blogblog.com/tictac/tictac_green.gif';"&gt; &lt;IMG SRC="http://www.blogblog.com/tictac/tictac_green.gif" name="mybutton" &gt;&lt;/A&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111603611864301727?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111603611864301727/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111603611864301727' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111603611864301727'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111603611864301727'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/javascript-rollover-buttons.html' title='Javascript: Rollover Buttons'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111601325879494762</id><published>2005-05-13T15:04:00.000-04:00</published><updated>2005-05-14T07:46:30.736-04:00</updated><title type='text'>Javascript: Password Tips</title><content type='html'>If you want a page to be password protected, look at these html tips and tricks.&lt;br /&gt;&lt;br /&gt;The first step is to find a web page that is password protected.&lt;br /&gt;Mine is: http://htmlpassprotect.blogspot.com/&lt;br /&gt;&lt;br /&gt;The second step is to find a web page that will be gone to if the visitor types in the wrong password.&lt;br /&gt;I chose: http://htmltips.blogspot.com/&lt;br /&gt;It may be better, however, to make a page that will say, for example, "YOUR PASSWORD IS INCORRECT. CLICK HERE TO TRY AGAIN. CLICK HERE TO GO BACK."&lt;br /&gt;&lt;br /&gt;The third step is to insert the following code in &lt;u&gt;between &lt;b&gt;&amp;lt;head&amp;gt;&lt;/b&gt; and &lt;b&gt;&amp;lt;/head&amp;gt;&lt;/b&gt;&lt;/u&gt; on your password protected page:&lt;br /&gt;&lt;font size=1&gt;&lt;b&gt;&amp;lt;SCRIPT language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;!--hide&lt;br /&gt;&lt;br /&gt;var password;&lt;br /&gt;&lt;br /&gt;var pass1=&amp;quot;&lt;i&gt;cool&lt;/i&gt;&amp;quot;;&lt;br /&gt;&lt;br /&gt;password=prompt('&lt;i&gt;Please enter your password to view this page!&lt;/i&gt;',' ');&lt;br /&gt;&lt;br /&gt;if (password==pass1)&lt;br /&gt;  alert('&lt;i&gt;Password Correct! Click OK to enter!&lt;/i&gt;');&lt;br /&gt;else&lt;br /&gt;   {&lt;br /&gt;    window.location=&amp;quot;&lt;i&gt;http://htmltips.blogspot.com&lt;/i&gt;&amp;quot;;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;//--&amp;gt;&lt;br /&gt;&amp;lt;/SCRIPT&amp;gt;&lt;/font&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;The four messages in italics show:&lt;br /&gt;-The password&lt;br /&gt;-The prompt that asks the visitor to type in the password &lt;br /&gt;-The message that is displayed if a user types in the password correctly&lt;br /&gt;-The address that the visitor goes to if they typed in the wrong password (This should probably be the site that you made in the second step)&lt;br /&gt;Those four messages may be changed if you desire.&lt;br /&gt;&lt;br /&gt;To make a link to the password protected page, simply use the &lt;b&gt;&amp;lt;a&amp;gt;&lt;/b&gt; tag:&lt;br /&gt;&lt;b&gt;&amp;lt;a href="http://addressofthesitethatispasswordprotected.com&amp;gt;Click here to go to the password protected site&amp;lt;/a&amp;gt;&lt;/b&gt;&lt;br /&gt;That is what I have done here:&lt;br /&gt;&lt;a href="http://htmlpassprotect.blogspot.com/"&gt;Click here to go to the password protected site&lt;/a&gt;&lt;br /&gt;Note: &lt;u&gt;Cool&lt;/u&gt; is the password for my password protected site.&lt;br /&gt;&lt;br /&gt;Finally, to make multiple passwords possible, you will have to look at the original javascript which is on the password protected page:&lt;br /&gt;&lt;font size=1&gt;&lt;b&gt;&amp;lt;SCRIPT language=&amp;quot;JavaScript&amp;quot;&amp;gt;&lt;br /&gt;&amp;lt;!--hide&lt;br /&gt;&lt;br /&gt;var password;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;var pass1=&amp;quot;cool&amp;quot;;&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;password=prompt('Please enter your password to view this page!',' ');&lt;br /&gt;&lt;br /&gt;if (&lt;i&gt;password==pass1&lt;/i&gt;)&lt;br /&gt;  alert('Password Correct! Click OK to enter!');&lt;br /&gt;else&lt;br /&gt;   {&lt;br /&gt;    window.location=&amp;quot;http://htmltips.blogspot.com&amp;quot;;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;//--&amp;gt;&lt;br /&gt;&amp;lt;/SCRIPT&amp;gt;&lt;br /&gt;&lt;/b&gt;&lt;/font&gt;&lt;br /&gt;First, you will need to look at first text in italics.&lt;br /&gt;&lt;b&gt;&lt;i&gt;var pass1=&amp;quot;cool&amp;quot;;&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;Change this to:&lt;br /&gt;&lt;b&gt;&lt;i&gt;var pass1="cool";&lt;br /&gt;var pass2="cool2";&lt;br /&gt;var pass3="cool3";&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;...And then new passwords will be declared.&lt;br /&gt;Make sure you change &lt;b&gt;cool, cool2,&lt;/b&gt; and &lt;b&gt;cool3&lt;/b&gt; for your own passwords.&lt;br /&gt;Finally, you need to look at the second text in italics:&lt;br /&gt;&lt;b&gt;&lt;i&gt;password==pass1&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;That will need to be changed to, in this case:&lt;br /&gt;&lt;b&gt;&lt;i&gt;password==pass1||pass2||pass3&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;That javascript literally says:&lt;br /&gt;"if the password that the user entered is the same as password 1 or password 2 or password 3, then follow the instructions below"&lt;br /&gt;If you were to make these changes to the password page, then the password page would accept &lt;u&gt;cool2&lt;/u&gt; and &lt;u&gt;cool3&lt;/u&gt; as a password also, in addition to &lt;u&gt;cool&lt;/u&gt;.&lt;br /&gt;&lt;br /&gt;To add more than 3 passwords, just add more of these:&lt;br /&gt;&lt;b&gt;var pass4="password"&lt;/b&gt;&lt;br /&gt;...and make sure to change pass4 to another name each time you add it again to the code.&lt;br /&gt;Adn edit the:&lt;br /&gt;&lt;b&gt;password==pass1&lt;/b&gt;&lt;br /&gt;To include all your password names. (Seperate the password names by &lt;b&gt;||&lt;/b&gt;) (The password name in &lt;b&gt;var pas10="cool10"&lt;/b&gt; is pas10)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111601325879494762?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111601325879494762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111601325879494762' title='19 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111601325879494762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111601325879494762'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/javascript-password-tips.html' title='Javascript: Password Tips'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>19</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111594513310362958</id><published>2005-05-12T20:23:00.000-04:00</published><updated>2005-05-12T20:49:00.533-04:00</updated><title type='text'>Mouseover Hyperlinks Tips</title><content type='html'>If you want to make your site fancy, these tips are for you!&lt;br /&gt;The tips and tricks in this post allow two different types of mouseover links.&lt;br /&gt;&lt;br /&gt;The first is one that will act as if visitors have clicked the link when they have simply put their mouse on top of it.&lt;br /&gt;For example, look at the following link:&lt;br /&gt;&lt;a href=" "onmouseover="parent.location='http://htmltips.blogspot.com'"&gt;Look at this site!&lt;/a&gt;&lt;br /&gt;It was made with this code:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&amp;lt;a href=&amp;quot; &amp;quot;onmouseover=&amp;quot;parent.location='&lt;span style="font-style:italic;"&gt;http://google.com&lt;/span&gt;'&amp;quot;&amp;gt;&lt;span style="font-style:italic;"&gt; Look &lt;br /&gt;at this site!&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;Copy and paste the code into your HTML code and the change the text in italics and you are done!&lt;br /&gt;&lt;br /&gt;The second mouseover link tip is one that will show a pop-up window when a visitor puts his or her mouse on the link.&lt;br /&gt;Look at this link:&lt;br /&gt;&lt;a href="" onMouseover="alert('That answer is correct')"&gt;I like web pages&lt;/a&gt;&lt;br /&gt;It was made with slightly different code than the previous tip. Look at the HTML:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&amp;lt;a href=&amp;quot;&amp;quot; onMouseover=&amp;quot;alert('&lt;span style="font-style:italic;"&gt;That answer is correct&lt;/span&gt;')&amp;quot;&amp;gt;&lt;span style="font-style:italic;"&gt;I like web pages&lt;/span&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;&lt;br /&gt;Copy and paste that code into your web page's HTML code and remember to change the text in italics.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Related Tips:&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/describe-your-links.html"&gt;Describe Your Links&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/describe-your-links-another-way.html"&gt;Describe Your Links Another Way&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/nice-mailto-trick.html"&gt;The Nice Mailto Trick&lt;br /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/linking-to-other-parts-of-same-webpage.html"&gt;Linking to Other Parts of the Same Webpage&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111594513310362958?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111594513310362958/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111594513310362958' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111594513310362958'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111594513310362958'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/mouseover-hyperlinks-tips.html' title='Mouseover Hyperlinks Tips'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111593083288464708</id><published>2005-05-12T16:37:00.000-04:00</published><updated>2005-05-12T18:31:21.533-04:00</updated><title type='text'>Blockquote Tips</title><content type='html'>Blockquote makes a small text box that is indented, as in a quote.&lt;br /&gt;&lt;blockquote&gt;This text is a little to the right because of the blockquote tag. To learn how to make a blockquote like this one, continue reading HTML Tips and Tricks.&lt;/blockquote&gt;&lt;br /&gt;To make a blockquote, simply copy and paste the following HTML code:&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&amp;lt;blockquote&amp;gt;Text Text Text&amp;lt;/blockquote&amp;gt;&lt;/span&gt;&lt;br /&gt;Finally, change the "Text Text Text" message to suit your needs.&lt;br /&gt;Result:&lt;br /&gt;&lt;blockquote&gt;Text Text Text&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;Related Tips:&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/06/align-textimages.html"&gt;Align Text and Images&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;Tips for Formatting Text&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;NOTE FROM GEOFFREY: The "correct" use of the blockquote is to quote someone.  For example:&lt;br /&gt;&lt;br /&gt;Geoffrey said this:&lt;br /&gt;&lt;blockquote&gt;"Although you can use this tag simply to indent text, it is better if you use it to quote. That is why it is called the "blockquote" tag."&lt;/blockquote&gt;&lt;br /&gt;&lt;br /&gt;As you can see, the tag is handy to quote people or websites.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111593083288464708?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111593083288464708/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111593083288464708' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111593083288464708'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111593083288464708'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/blockquote-tips.html' title='Blockquote Tips'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-111585609856698779</id><published>2005-05-11T17:07:00.000-04:00</published><updated>2005-05-11T20:06:31.756-04:00</updated><title type='text'>Bullets and Lists</title><content type='html'>These html tips and tricks will help you put bullets and lists on your blog.&lt;br /&gt;&lt;br /&gt;Let's start with simple bullets.&lt;br /&gt;&lt;br /&gt;For this html tip, look at this bullet:&lt;br /&gt;&lt;li&gt;This is next to a bullet&lt;/li&gt;&lt;br /&gt;It was made with this simple HTML code:&lt;br /&gt;&lt;strong&gt;&amp;lt;li&amp;gt;This is next to a bullet&amp;lt;/li&amp;gt;&lt;/strong&gt;&lt;br /&gt;Insert the above code to your web page,&lt;br /&gt;and then change the message to suit you needs.&lt;br /&gt;&lt;br /&gt;...And now let's end with more advanced tips, concerning lists.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;To make numbered bullets,&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Like these&lt;/li&gt;&lt;br /&gt;&lt;li&gt;ones&lt;/li&gt;&lt;/ol&gt;use this HTML code instead:&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;Like these&amp;lt;/li&amp;gt;&lt;br /&gt;&amp;lt;li&amp;gt;ones&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style:italic;"&gt;Note that the &lt;b&gt;&amp;lt;ol&amp;gt;&lt;/b&gt; is only put at the extremes of the list.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;There are also some tips and tricks that will allow different types of bullets:&lt;br /&gt;&lt;ol type="i"&gt;&lt;li&gt;Lower Case Roman Numerals&lt;/li&gt;&lt;/ol&gt;HTML Code:&lt;br /&gt;&lt;b&gt;&amp;lt;ol type="i"&amp;gt;&amp;lt;li&amp;gt;Lower Case Roman Numerals&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol type="I"&gt;&lt;li&gt;Upper Case Roman Numerals&lt;/li&gt;&lt;/ol&gt;HTML Code:&lt;br /&gt;&lt;b&gt;&amp;lt;ol type="I"&amp;gt;&amp;lt;li&amp;gt;Upper Case Roman Numerals&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol type="a"&gt;&lt;li&gt;Lower Case Alphabet&lt;/li&gt;&lt;/ol&gt;HTML Code:&lt;br /&gt;&lt;b&gt;&amp;lt;ol type="a"&amp;gt;&amp;lt;li&amp;gt;Lower Case Alphabet&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol type="A"&gt;&lt;li&gt;Upper Case Alphabet&lt;/li&gt;&lt;/ol&gt;HTML Code:&lt;br /&gt;&lt;b&gt;&amp;lt;ol type="A"&amp;gt;&amp;lt;li&amp;gt;Upper Case Alphabet&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Finally, text inside these bullets can be &lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;formatted with this tip&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-111585609856698779?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/111585609856698779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=111585609856698779' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111585609856698779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/111585609856698779'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2005/05/bullets-and-lists.html' title='Bullets and Lists'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-110429609327383435</id><published>2004-12-28T23:47:00.000-05:00</published><updated>2004-12-29T00:03:55.806-05:00</updated><title type='text'>HTML Requests</title><content type='html'>Long time no post! This is a post where you guys can request a snippet of HTML code to do a certain thing, sort of like question and answer. All you have to do is &lt;a href="http://www.blogger.com/comment.g?blogID=7019451&amp;postID=110429609327383435"&gt;leave a comment&lt;/a&gt;, and we'll get back to you in a comment as soon as possible.&lt;br /&gt;&lt;br /&gt;Also, to remind you, the&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt; HTML newsletter is still active. Not many people are signing up. Remember, you can get a free Gmail account if you &lt;a href="http://htmlnewsletter.blogspot.com/"&gt;sign up!&lt;/a&gt; First 5 people get Gmail accounts, and out of the next 5 people, 1 gets a Gmail account. (At least.)&lt;br /&gt;&lt;br /&gt;So, let the requests begin!&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-110429609327383435?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/110429609327383435/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=110429609327383435' title='57 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/110429609327383435'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/110429609327383435'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/12/html-requests.html' title='HTML Requests'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>57</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108999129586328654</id><published>2004-07-16T11:11:00.000-04:00</published><updated>2004-07-18T12:28:58.806-04:00</updated><title type='text'>Problems with Tips and Tricks</title><content type='html'>Sometimes, our html tricks do not show up the way you want it to. Before you break your computer, look at these tips and see if you can find your html problem: &lt;br /&gt;&lt;br /&gt;Make sure you have completely read the html trick. &lt;br /&gt;Make sure you have written the code on one line. &lt;br /&gt;Make sure you put your quotes in the right places. Double-check your&amp;nbsp;&amp;lt; and &amp;gt;s. &lt;br /&gt;Make sure that the code is put in the correct place of the document. You also have to start a &lt;a href="http://htmltips.blogspot.com/2004/06/building-web-page-from-scratch.html"&gt;page like this&lt;/a&gt;. &lt;br /&gt;&lt;br /&gt;If nothing worked, please go to the &lt;a href="http://alloscomp.sytes.net/scott/phptest/viewforum.php?f=1"&gt;code help forum&lt;/a&gt;, and tell us your problem. &lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108999129586328654?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108999129586328654/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108999129586328654' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108999129586328654'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108999129586328654'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/07/problems-with-tips-and-tricks.html' title='Problems with Tips and Tricks'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108868664900463947</id><published>2004-07-01T08:46:00.000-04:00</published><updated>2004-08-09T05:20:49.186-04:00</updated><title type='text'>Introduction to Stylesheets</title><content type='html'>Note: Please learn other html before you advance to stylesheets.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;What are stylesheets???&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;They are a sheet of code right below your &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt; which change the the rest of the page, making it more stylish. It can change how bullets, paragraphs, images, etc. all look.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;Writing stylesheets&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;The basic way you write a stylesheet is...&lt;br /&gt;&lt;br /&gt;&lt;span style="color:green;"&gt;&lt;br /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;br /&gt;TYPE OF HTML TAG{property: value; secondproperty, value}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So, let's say you wanted to change how paragraphs look. (paragraphs are made with &lt;strong&gt;&amp;lt;p&amp;gt;&lt;/strong&gt; and &lt;strong&gt;&amp;lt;/p&amp;gt;&lt;/strong&gt;&lt;br /&gt;This is how you do it, if you wanted to change the color of paragraphs:&lt;br /&gt;&lt;span style="color:green;"&gt;&lt;br /&gt;&amp;lt;style type="text/css"&amp;gt;&lt;br /&gt;P{color: "green"}&lt;br /&gt;&amp;lt;/style&amp;gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Observe that since we wanted to change only one property of paragraphs, we simply left out the second property.&lt;br /&gt;....hmmm....&lt;br /&gt;If that stylesheet code was inserted right after the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt;, then all text put between &lt;strong&gt;&amp;lt;p&amp;gt;&lt;/strong&gt; and &lt;strong&gt;&amp;lt;/p&amp;gt;&lt;/strong&gt; will be green!.&lt;br /&gt;&lt;br /&gt;Now you know some basic principle on creating a stylesheet and stylesheets are one of the best tricks you can have among all the html code on your web page.&lt;br /&gt;&lt;br /&gt;In paragraphs, you can also change the &lt;span style="color:green;"&gt;font-size&lt;/span&gt; and much more.&lt;br /&gt;Instead of changing paragraphs, you can change bullets, or more.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://alloscomp.sytes.net/scott/advancedcss.htm"&gt;Advanced CSS&lt;/a&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108868664900463947?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108868664900463947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108868664900463947' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108868664900463947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108868664900463947'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/07/introduction-to-stylesheets.html' title='Introduction to Stylesheets'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108777105571955283</id><published>2004-06-20T18:23:00.000-04:00</published><updated>2004-06-21T12:30:06.530-04:00</updated><title type='text'>Create More Advanced Forms</title><content type='html'>&lt;a href="http://htmltips.blogspot.com/2004/05/how-to-create-basic-form.html"&gt;Here is how to create a basic form.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Maybe you want to create a better form, so here are some more advanced html tips.&lt;br /&gt;Before I start, please make sure that you change the e-mail adress in the form code.&lt;br /&gt;&lt;br /&gt;&lt;u&gt;Also, if your form does not work, try cramming the form code into one line.&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;Okay, so here was the code for the "basic form"&lt;br /&gt;&lt;font size="1"&gt;&lt;b&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;br /&gt;&amp;lt;TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%"&amp;gt;&lt;br&gt;&amp;lt;TR&amp;gt;&lt;br&gt;&amp;lt;TD width="30%"&amp;gt;&amp;lt;DIV align="right"&amp;gt;&lt;br /&gt;&amp;lt;B&amp;gt;Name:&amp;lt;/B&amp;gt;&lt;br&gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD width="70%"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="text" name="name" size="20"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;DIV align="right"&amp;gt;&amp;lt;B&amp;gt;Email:&amp;lt;/B&amp;gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="text" name="email" size="20"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;DIV align="right"&amp;gt;&lt;br /&gt;&amp;lt;B&amp;gt;Comment:&amp;lt;/B&amp;gt;&lt;br /&gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;TEXTAREA name="comment" cols="30" wrap="virtual"rows="4"&amp;gt;&lt;br /&gt;&amp;lt;/TEXTAREA&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&amp;amp;nbsp;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="submit" name="submit" value="Submit"&amp;gt;&lt;br&gt;&amp;lt;INPUT type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&amp;lt;/TR&amp;gt;&lt;br&gt;&amp;lt;/TABLE&amp;gt;&lt;br&gt;&amp;lt;/FORM&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;How about we first remove the name and e-mail, though if you want you can keep it.&lt;br /&gt;Let's also remove the comment label, the table...&lt;br /&gt;Let's just keep the box and the submit and reset buttons.&lt;br /&gt;The code changes like this:&lt;br /&gt;&lt;font size="1"&gt;&lt;b&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;br /&gt;&amp;lt;TEXTAREA name="comment" cols="30" wrap="virtual"rows="4"&amp;gt;&lt;br /&gt;&amp;lt;/TEXTAREA&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="submit" name="submit" value="Submit"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;This changes the form to this:&lt;br /&gt;&lt;form action="mailto:nilsmolina@comcast.net" method="post"enctype="text/plain"&gt;&lt;textarea name="comment" cols="30" wrap="virtual"rows="4"&gt;&lt;/textarea&gt;&lt;br&gt;&lt;input type="submit" name="submit" value="Submit"&gt;&lt;input type="reset" name="reset" value="Reset"&gt;&lt;/form&gt;&lt;br /&gt;&lt;br /&gt;Now we have a simplified form. Let's put text in the box:&lt;br /&gt;&lt;font size="1"&gt;&lt;b&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;br /&gt;&amp;lt;TEXTAREA name="comment" cols="30" wrap="virtual"rows="4"&amp;gt;&lt;br /&gt;&lt;em&gt;Here is my comment...&lt;/em&gt;&lt;br /&gt;&amp;lt;/TEXTAREA&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="submit" name="submit" value="Submit"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;br /&gt;And the form becomes changed like this:&lt;br /&gt;&lt;form action="mailto:nilsmolina@comcast.net" method="post"enctype="text/plain"&gt;&lt;textarea name="comment" cols="30" wrap="virtual"rows="4"&gt;Here is my comment...&lt;/textarea&gt;&lt;br&gt;&lt;input type="submit" name="submit" value="Submit"&gt;&lt;input type="reset" name="reset" value="Reset"&gt;&lt;/form&gt;&lt;br /&gt;Let's change the size of the box:&lt;br /&gt;&lt;font size="1"&gt;&lt;b&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;br /&gt;&amp;lt;TEXTAREA name="comment" &lt;em&gt;cols="20" wrap="virtual"rows="2"&lt;/em&gt;&amp;gt;&lt;br /&gt;Here is my comment...&lt;br /&gt;&amp;lt;/TEXTAREA&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="submit" name="submit" value="Submit"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;br /&gt;And the form becomes this:&lt;br /&gt;&lt;form action="mailto:nilsmolina@comcast.net" method="post"enctype="text/plain"&gt;&lt;textarea name="comment" cols="20" wrap="virtual"rows="2"&gt;Here is my comment...&lt;/textarea&gt;&lt;br&gt;&lt;input type="submit" name="submit" value="Submit"&gt;&lt;input type="reset" name="reset" value="Reset"&gt;&lt;/form&gt;&lt;br /&gt;&lt;br /&gt;Now, let's make little circles instead of a box, like this:&lt;br /&gt;&lt;form action="mailto:nilsmolina@comcast.net" method="post"enctype="text/plain"&gt;&lt;input type="radio" value="Yes" name="cloning"&gt;This is a good website.&lt;br&gt;&lt;input type="radio" value="No" name="cloning"&gt;This is a bad website.&lt;br&gt;&lt;input type="radio" value="Question" name="cloning"&gt;I don't know.&lt;br&gt;&lt;input type="submit" name="submit" value="Submit"&gt;&lt;input type="reset" name="reset" value="Reset"&gt;&lt;/form&gt;&lt;br /&gt;We changed the code like this:&lt;br /&gt;&lt;font size="1"&gt;&lt;strong&gt;&amp;lt;form action="mailto:nilsmolina@comcast.net"&lt;br /&gt;method="post"enctype="text/plain"&amp;gt;&lt;br /&gt;&lt;em&gt;&amp;lt;input type="radio" value="Yes" name="cloning"&amp;gt;This is a good website.&lt;br /&gt;&amp;lt;br&amp;gt&lt;br /&gt;&amp;lt;input type="radio" value="No" name="cloning"&amp;gt;This is a bad website.&lt;br /&gt;&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;input type="radio" value="Question" name="cloning"&amp;gt;I don't know.&lt;br /&gt;&amp;lt;br&amp;gt;&lt;/em&gt;&lt;br /&gt;&amp;lt; input type="submit" name="submit" value="submit"&amp;gt;&lt;br /&gt;&amp;lt;input type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;See that if someone click on, for example, this is a good website, then "YES" is returned to the adress nilsmolina@comcast.net.&lt;br /&gt;Radio means those little circles.&lt;br /&gt;You can also combine a box and radios.&lt;br /&gt;Let's look at checkboxes.&lt;br /&gt;Here is the code for checkboxes:&lt;br /&gt;&lt;strong&gt;&amp;lt;input type="checkbox" name="option1" value="Milk"&amp;gt; Milk&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="option2" value="Butter" checked&amp;gt; Butter&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="option3" value="Cheese"&amp;gt; Cheese&amp;lt;br&amp;gt;&lt;/strong&gt;&lt;br /&gt;To put the code into a form, do this:&lt;br /&gt;&lt;font size="1"&gt;&lt;strong&gt;&amp;lt;form action="mailto:nilsmolina@comcast.net"&lt;br /&gt;method="post"enctype="text/plain"&amp;gt;&lt;br /&gt;&lt;em&gt;&amp;lt;input type="checkbox" name="option1" value="Milk"&amp;gt; Milk&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="option2" value="Butter" checked&amp;gt; Butter&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;input type="checkbox" name="option3" value="Cheese"&amp;gt; Cheese&amp;lt;br&amp;gt;&lt;/em&gt;&lt;br /&gt;&amp;lt;input type="submit" name="submit" value="submit"&amp;gt;&lt;br /&gt;&amp;lt;input type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/font&gt;&lt;/strong&gt;&lt;br /&gt;Now you get a nice form like this:&lt;br /&gt;&lt;form action="mailto:nilsmolina@comcast.net"method="post"enctype="text/plain"&gt;&lt;input type="checkbox" name="option1" value="Milk"&gt; Milk&lt;br&gt;&lt;input type="checkbox" name="option2" value="Butter" checked&gt; Butter&lt;br&gt;&lt;input type="checkbox" name="option3" value="Cheese"&gt; Cheese&lt;br&gt;&lt;input type="submit" name="submit" value="submit"&gt;&lt;input type="reset" name="reset" value="Reset"&gt;&lt;/form&gt;&lt;br /&gt;Note that &lt;strong&gt;checked&lt;/strong&gt; made the box checked.&lt;br /&gt;Finally, you can also change what the buttons say, instead of boring submit, and reset, by changing the submit/reset in &lt;strong&gt;value="Submit"&lt;/strong&gt;/&lt;strong&gt;value="Reset"&lt;/strong&gt;.&lt;br /&gt;Now you can have great forms with these html tips!!!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108777105571955283?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108777105571955283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108777105571955283' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108777105571955283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108777105571955283'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/create-more-advanced-forms.html' title='Create More Advanced Forms'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108766619944079339</id><published>2004-06-19T13:10:00.000-04:00</published><updated>2004-06-19T13:31:51.803-04:00</updated><title type='text'>Page Fading: Internet Explorer</title><content type='html'>Did this page fade when you came into it?  If it didn't you are probably using a browser other than Internet Explorer (or HTML Tips is your home page, which is highly unlikely).  &lt;br /&gt;That fade was accomplished using this command in the head of the HTML code (crammed onto 1 line):&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&amp;lt;meta http-equiv="Page-Enter" content="blendTrans(Duration=2.0)"&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This "blends" the page in for 2.0 seconds when it is entered.  &lt;br /&gt;You can change the Page-Enter to Page-Exit, Site-Enter, or Site-Exit.  Also, you can change the &lt;strong&gt;"blendTrans(Duration=2.0)"&lt;/strong&gt; to:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;"revealTrans(Duration=2.0,Transition=2)"&lt;/strong&gt; for Circle In&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;"revealTrans(Duration=2.0,Transition=5)"&lt;/strong&gt; for Wipe Down&lt;br /&gt;&lt;br /&gt;or&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;"revealTrans(Duration=2.0,Transition=10)"&lt;/strong&gt; for Checkerboard Across.  &lt;br /&gt;&lt;br /&gt;Change the &lt;strong&gt;Duration=2.0&lt;/strong&gt; to a different number for a longer or shorter transition (in seconds).  &lt;br /&gt;&lt;br /&gt;Change the &lt;strong&gt;Transition=2&lt;/strong&gt; to a different number for a different transition.  &lt;br /&gt;&lt;br /&gt;Make your site more interesting and beautiful using this tip!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;i&gt;NOTE FROM GEOFFREY: This tip only works in Internet Explorer.  Also, it does not work when a site is your homepage (there is nothing to transition from).  &lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108766619944079339?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108766619944079339/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108766619944079339' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108766619944079339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108766619944079339'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/page-fading-internet-explorer.html' title='Page Fading: Internet Explorer'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108749541002328788</id><published>2004-06-17T14:03:00.000-04:00</published><updated>2004-06-17T14:17:13.193-04:00</updated><title type='text'>Background Color</title><content type='html'>Replace the &lt;strong&gt;&amp;lt;body&amp;gt;&lt;/strong&gt; tag with this:&lt;br /&gt;&lt;strong&gt;&amp;lt;body bgcolor="#00FFFF"&amp;gt;&lt;/strong&gt;&lt;br /&gt;It will make your web page have a light blue background color.&lt;br /&gt;Change the &lt;strong&gt;#00FFFF&lt;/strong&gt; to one of these to have a different background color:&lt;br /&gt;#FFFF00=Yellow&lt;br /&gt;#FF66FF=Purple&lt;br /&gt;#FF6699=Pink&lt;br /&gt;#FF6600=Orange&lt;br /&gt;#FF0000=Red&lt;br /&gt;#CCFF99=Green&lt;br /&gt;#CC6600=Brown&lt;br /&gt;#99CCFF=Blue&lt;br /&gt;#6600FF=Dark Blue&lt;br /&gt;#000000=Black&lt;br /&gt;#FFFFFF=White&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://home.comcast.net/~nilsmolina/new_page_9.htm"&gt;Here is an example of a web page&lt;/a&gt; using this html tip.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108749541002328788?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108749541002328788/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108749541002328788' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108749541002328788'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108749541002328788'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/background-color.html' title='Background Color'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108749532147613469</id><published>2004-06-17T13:57:00.000-04:00</published><updated>2004-06-17T14:02:35.986-04:00</updated><title type='text'>Internet Explorer: Background Sound</title><content type='html'>If you have internet explorer, then you can use this tip.&lt;br /&gt;&lt;br /&gt;This tip should be used right after the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt;:&lt;br /&gt;Insert this code onto ONE line:&lt;br /&gt;&lt;strong&gt;&amp;lt;bgsound src="http://home.comcast.net/~nilsmolina/Hecho.wav" loop="-1"&amp;gt;&lt;/strong&gt;&lt;br /&gt;And you will get background sound &lt;a href="http://home.comcast.net/~nilsmolina/new_page_9.htm"&gt;like this&lt;/a&gt;.&lt;br /&gt;Change the url for a different sound location.&lt;br /&gt;Change the loop number if you would like to specify the amount of loops the sound should play.&lt;br /&gt;That is how to add background sound.&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108749532147613469?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108749532147613469/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108749532147613469' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108749532147613469'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108749532147613469'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/internet-explorer-background-sound.html' title='Internet Explorer: Background Sound'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108748225875376063</id><published>2004-06-17T10:11:00.000-04:00</published><updated>2004-06-17T10:24:18.753-04:00</updated><title type='text'>Prevent Browsers from Caching</title><content type='html'>Many browsers know that people don't always have 3 megabit connections to the internet (why are you staring at me), so they save websites onto their viewer's computer. Then, when the viewer visits the website again, the browser puts the outdated version of the web page it has saved in front of the viewer. This process is called caching. If your page is constantly updated, it is usually a bad idea to have browsers cache your website. Therefore you will need this html tip:&lt;br /&gt;Put this code right after the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt;:&lt;br /&gt;&lt;strong&gt;&amp;lt;META HTTP-EQUIV="Expires" CONTENT="Tue, 01 Jan 1980 1:00:00 GMT"&amp;gt;&lt;br /&gt;&amp;lt;META HTTP-EQUIV="Pragma" CONTENT="no-cache"&amp;gt;&lt;/strong&gt;&lt;br /&gt;Do not worry about the queer date, but worry about putting the code onto the least lines as possible. Your page will now probably never be cached again!&lt;br /&gt;This web page also never gets cached.&lt;br /&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108748225875376063?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108748225875376063/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108748225875376063' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108748225875376063'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108748225875376063'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/prevent-browsers-from-caching.html' title='Prevent Browsers from Caching'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108741969065299282</id><published>2004-06-16T16:54:00.000-04:00</published><updated>2004-06-16T17:03:02.503-04:00</updated><title type='text'>Put in a Tiled Background</title><content type='html'>Many people want backgrounds.&lt;br /&gt;So here is an html tip for it.&lt;br /&gt;Change your body tag (&lt;strong&gt;&amp;lt;body&amp;gt;&lt;/strong&gt;) to...&lt;br /&gt;&lt;strong&gt;&amp;lt;body background="https://home.comcast.net/&lt;br /&gt;~nilsmolina/0rrgobve%5B1%5D.jpg"&amp;gt;&lt;/strong&gt;&lt;br /&gt;(make sure the above code is on one line once inserted)&lt;br /&gt;&lt;a href="https://home.comcast.net/~nilsmolina/new_page_7.htm"&gt;Your website will look something like this&lt;/a&gt;&lt;br /&gt;To change the little background image, change the url (http://...).&lt;br /&gt;That is how to put in a tiled background.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108741969065299282?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108741969065299282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108741969065299282' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108741969065299282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108741969065299282'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/put-in-tiled-background.html' title='Put in a Tiled Background'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108734147386593910</id><published>2004-06-15T19:13:00.000-04:00</published><updated>2004-06-15T19:24:03.110-04:00</updated><title type='text'>Justify Text</title><content type='html'>Look at the code for justifying text:&lt;br /&gt;&lt;strong&gt;&amp;lt;p align="justify"&amp;gt;bla  bla  bla  bla blablabla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla&lt;br /&gt;&amp;lt;/p&amp;gt;&lt;/strong&gt;&lt;br /&gt;It creates this justified text:&lt;br /&gt;&lt;p align="justify"&gt;bla  bla  bla  bla bla bla blablabla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;em&gt;(Unjustified text:&lt;br /&gt;bla  bla  bla  bla bla bla bla bla bla bla bla blablabla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla bla&lt;br /&gt;See the difference?)&lt;/em&gt;&lt;br /&gt;That is how you justify text.&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/06/align-textimages.html"&gt;Learn how to align text here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108734147386593910?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108734147386593910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108734147386593910' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108734147386593910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108734147386593910'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/justify-text.html' title='Justify Text'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108733948992504563</id><published>2004-06-15T18:42:00.000-04:00</published><updated>2004-06-15T19:25:28.776-04:00</updated><title type='text'>Align Text/Images</title><content type='html'>To align text to the right insert this code:&lt;br /&gt;&lt;strong&gt;&amp;lt;p align=right&amp;gt;aligning text with this tip&amp;lt;/p&amp;gt;&lt;/strong&gt;&lt;br /&gt;It will create this:&lt;br /&gt;&lt;p align=right&gt;aligning text with this tip&lt;/p&gt;&lt;br /&gt;If you would like to align the text to the left or center instead, change the right to left or center.&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.htmlp://"&gt;More tips for formatting text&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/06/justify-text.html"&gt;Learn how to justify text here&lt;/a&gt;&lt;br /&gt;...to align images use the following html tip:&lt;br /&gt;&lt;br /&gt;Here is a normal image:&lt;br /&gt;html code=&lt;br /&gt;&lt;strong&gt;&amp;lt;img src=http://www.google.com/images/logo.gif&amp;gt;&lt;/strong&gt;&lt;br /&gt;output=&lt;br /&gt;&lt;img src=http://www.google.com/images/logo.gif&gt;&lt;br /&gt;Here is an image aligned to the right:&lt;br /&gt;html code=&lt;br /&gt;&lt;strong&gt;&amp;lt;img src=http://www.google.com/images/logo.gif align=right&amp;gt;&lt;/strong&gt;&lt;br /&gt;output=&lt;br /&gt;&lt;img src=http://www.google.com/images/logo.gif align=right&gt;&lt;br /&gt;&lt;br /&gt;To make an image centered, change the right to center.&lt;br /&gt;You can also change the right to left.&lt;br /&gt;Make sure you check out the various other html tips on images!&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108733948992504563?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108733948992504563/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108733948992504563' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108733948992504563'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108733948992504563'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/align-textimages.html' title='Align Text/Images'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108725654341788784</id><published>2004-06-14T19:38:00.000-04:00</published><updated>2004-06-14T19:42:23.416-04:00</updated><title type='text'>Javascript: Print This Page</title><content type='html'>This html tip will put the page on paper.&lt;br /&gt;The code for a print this page link is:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="#"&lt;br /&gt;&amp;nbsp;onkeypress="javascript:if (window.print !=&lt;br /&gt;null)window.print();return false"&lt;br /&gt;&amp;nbsp;onclick="javascript:if (window.print !=&lt;br /&gt;null)window.print();return false"&lt;br /&gt;&amp;nbsp;title="Print this Page - or select File and Then Print from your&lt;br /&gt;browsers menu"&amp;gt;Print&lt;br /&gt;This Page&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;If that code is copied and pasted onto one line, it will create a link like this:&lt;br /&gt;&lt;a href="#"onkeypress="javascript:if (window.print != null)window.print();return false"onclick="javascript:if (window.print != null)window.print();return false"title="Print this Page - or select File and Then Print from your browsers menu"&gt;Print This Page&lt;/a&gt;&lt;br /&gt;Now you can have viewers print your pages!&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108725654341788784?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108725654341788784/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108725654341788784' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108725654341788784'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108725654341788784'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/javascript-print-this-page.html' title='Javascript: Print This Page'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108715181480343862</id><published>2004-06-13T14:26:00.000-04:00</published><updated>2005-05-15T13:59:10.900-04:00</updated><title type='text'>Building a Web Page From Scratch</title><content type='html'>Delete all the html code you have for your web page if you want to start your page from scratch! &lt;br /&gt;To start a web page from scratch with html insert this code: &lt;br /&gt;&lt;strong&gt;&amp;lt;html&amp;gt; &lt;br /&gt;&amp;lt;head&amp;gt; &lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;&amp;lt;/head&amp;gt; &lt;br /&gt;&amp;lt;body&amp;gt; &lt;br /&gt;&amp;lt;/body&amp;gt; &lt;br /&gt;&amp;lt;/html&amp;gt;&lt;/strong&gt; &lt;br /&gt;After you have done this, you can look at the html tips provided at this web page and use them between the &lt;br /&gt;&lt;strong&gt;&amp;lt;body&amp;gt;&lt;/strong&gt; &lt;br /&gt;and &lt;br /&gt;&lt;strong&gt;&amp;lt;/body&amp;gt;&lt;/strong&gt; &lt;br /&gt;tags. &lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;I suggest looking at this tip first&lt;/a&gt;. &lt;br /&gt;Remember that to make a link, you use this code: &lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://htmltips.blogspot.com"&amp;gt;Link&amp;lt;/a&amp;gt;&lt;/strong&gt; &lt;br /&gt;The link will look like this: &lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/"&gt;Link&lt;/a&gt; &lt;br /&gt;Also, you may want to look at the tips about images on this site.&lt;br /&gt;&amp;nbsp;&lt;br /&gt;Also, to make new lines, look at &lt;a href="http://htmltips.blogspot.com/2005/05/new-line-tips.html"&gt;this tip&lt;/a&gt;.&lt;br /&gt;&lt;em&gt;NOTE: Some tips may need to go between the &lt;strong&gt;&amp;lt;head&amp;gt;&lt;/strong&gt;&amp;nbsp; and &lt;strong&gt;&amp;lt;/head&amp;gt;&lt;/strong&gt; . For example, all tips which use &lt;strong&gt;meta &lt;/strong&gt;go in the head.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108715181480343862?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108715181480343862/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108715181480343862' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108715181480343862'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108715181480343862'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/building-web-page-from-scratch.html' title='Building a Web Page From Scratch'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108715114235737546</id><published>2004-06-13T14:20:00.000-04:00</published><updated>2004-06-13T14:25:42.356-04:00</updated><title type='text'>Hit Counter</title><content type='html'>If you would like a hit counter on your web page like the one at the bottom of this website, then &lt;A HREF="mailto:nilsmolina@comcast.net?subject=Html Tips&amp;body=I would like a hit counter"&gt;you will have to e-mail me&lt;/A&gt; becuase of technical difficulties... When I respond to the e-mail, I will simply give you html code which you can cut and paste into your site. Also, I will give you instructions on how to optionally edit the code to make the counter look different. If you don't like the counter, you can remove it from your site at any time. If you e-mail me, you will get a valuable html tip!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108715114235737546?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108715114235737546/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108715114235737546' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108715114235737546'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108715114235737546'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/hit-counter.html' title='Hit Counter'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108714934428133590</id><published>2004-06-13T13:38:00.000-04:00</published><updated>2004-06-13T13:55:44.283-04:00</updated><title type='text'>Have Text Highlighted</title><content type='html'>This is the code for normal text:&lt;br /&gt;&lt;strong&gt;HTML TEXT&lt;/strong&gt;&lt;br /&gt;It will create this:&lt;br /&gt;HTML TEXT&lt;br /&gt;To have HTML highlighted, change the code to this:&lt;br /&gt;&lt;strong&gt;&amp;lt;span style="background-color: #FFFF00"&amp;gt;HTML&amp;lt;/span&amp;gt; TEXT&lt;/strong&gt;&lt;br /&gt;It will create this:&lt;br /&gt;&lt;span style="background-color: #FFFF00"&gt;HTML&lt;/span&gt; TEXT &lt;br /&gt;This html tip will make your page even fancier.&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;Read more about text formatting here&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108714934428133590?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108714934428133590/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108714934428133590' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108714934428133590'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108714934428133590'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/have-text-highlighted.html' title='Have Text Highlighted'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108664536511378542</id><published>2004-06-07T17:50:00.000-04:00</published><updated>2004-06-20T18:22:59.113-04:00</updated><title type='text'>Make Advanced Tables</title><content type='html'>&lt;a href="http://htmltips.blogspot.com/2004/06/create-little-table.html"&gt;Here is how to create a basic table, so you will understand the following info.&lt;/a&gt;&lt;br /&gt;Now that you've learned that, wouldn't it be nice to have a few handy table html tips?&lt;br /&gt;Here they are:&lt;br /&gt;&lt;br /&gt;First, we should already know that &lt;br /&gt;&lt;b&gt;&amp;lt;table style="text-align: left; width: 100%;" border="3"&lt;br /&gt;cellpadding="2"&amp;gt;&lt;br /&gt;&amp;lt;tbody&amp;gt;&lt;br /&gt;&amp;lt;tr =""&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table1&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table2&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table3&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table4&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/tbody&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;br /&gt;is the code for a table.&lt;br /&gt;And the table will look like this:&lt;br /&gt;&lt;table style="text-align: left; width: 100%;" border="3"cellpadding="2"&gt;&lt;br /&gt;&lt;tbody&gt;&lt;br /&gt;&lt;tr =""&gt;&lt;br /&gt;&lt;td style="vertical-align: top;"&gt;Html Table1&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table2&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="vertical-align: top;"&gt;Html Table3&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table4&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;br /&gt;&lt;strong&gt;I shall also stress that if any code does not work properly when you have cut and pasted it, try putting it into only one line.&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;Second, let's introduce captions:&lt;br /&gt;&lt;b&gt;&amp;lt;table style="text-align: left; width: 100%;" border="3"&lt;br /&gt;cellpadding="2"&amp;gt;&lt;br /&gt;&lt;em&gt;&amp;lt;CAPTION&amp;gt;The Caption&amp;lt;/CAPTION&amp;gt;&lt;/em&gt;&lt;br /&gt;&amp;lt;tbody&amp;gt;&lt;br /&gt;&amp;lt;tr =""&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table1&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table2&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table3&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table4&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/tbody&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;br /&gt;See the change? It causes this:&lt;br /&gt;&lt;table style="text-align: left; width: 100%;" border="3"cellpadding="2"&gt;&lt;tbody&gt;&lt;caption&gt;The Caption&lt;/caption&gt;&lt;tr =""&gt;&lt;td style="vertical-align: top;"&gt;Html Table1&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table2&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="vertical-align: top;"&gt;Html Table3&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table4&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;br /&gt;(Remember that &lt;a href="http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html"&gt;you can use these tricks&lt;/a&gt; in between the &lt;b&gt;&amp;lt;caption&amp;gt;&lt;/b&gt; and &lt;b&gt;&amp;lt;/caption&amp;gt;&lt;/b&gt; to spice up the caption text)&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108664536511378542?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108664536511378542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108664536511378542' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108664536511378542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108664536511378542'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/make-advanced-tables.html' title='Make Advanced Tables'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108630788785654294</id><published>2004-06-03T20:01:00.000-04:00</published><updated>2004-06-03T21:04:07.536-04:00</updated><title type='text'>Weird Tips for Scrolling Banners (Marquees)</title><content type='html'>&lt;a href="http://htmltips.blogspot.com/2004/05/marquees-scrolling-banners.html"&gt;Before reading, click here to see how to create a basic marquee.&lt;/a&gt;&lt;br /&gt;Now, after you've read that, you are probably dying to get some tricks implanted into these marquees.&lt;br /&gt;See this code? It puts an image resized to a height of 33, a width of 82, and the alternative text: "google picture in a marquee for this html tip so whatever". &lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;u&gt;If crammed into ONE line&lt;/u&gt;, the code creates  this:&lt;br /&gt;&lt;MARQUEE&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;You can also use all types of interesting html inside the &lt;strong&gt;&amp;lt;marquee&amp;gt;&lt;/strong&gt; tags.&lt;br /&gt;So, now we have easily put an image into the marquee.&lt;br /&gt;It takes long, however, for the marquee to scroll across the entire page.&lt;br /&gt;How about we make scroll in just a little part of the page?&lt;br /&gt;An html tip comes to the rescue!:&lt;br /&gt;If we use &lt;strong&gt;width=200&lt;/strong&gt; we can do this:&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE &lt;em&gt;width=200&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;If pasted onto ONE line, look at what happens:&lt;br /&gt;&lt;MARQUEE width=200&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;You can obviously change the number after the &lt;strong&gt;width=&lt;/strong&gt; if you want.&lt;br /&gt;You can even use &lt;strong&gt;length=&lt;/strong&gt; when coding html, too, but I unfortunately won't go over that...&lt;br /&gt;So, now we can make the marquee scroll shorter; with less width.&lt;br /&gt;How about we give you another little tip which will get the marquee going in another direction!&lt;br /&gt;Let's add direction=right to make the marquee scroll the other way:&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE width=200 &lt;em&gt;direction=right&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;Let's see what happens when we put the code on only one line:&lt;br /&gt;&lt;MARQUEE width=200 direction=right&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;Ooooooh... &lt;br /&gt;You can also use direction=left but I don't see a reason.&lt;br /&gt;So, we've used some weird html tips so far.&lt;br /&gt;How about we make the marquee slide, go back and forth...&lt;br /&gt;Why not?&lt;br /&gt;Let's make it go back and forth by adding &lt;strong&gt;behavior=alternate&lt;/strong&gt;:&lt;br /&gt;(Code:)&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE width=200 direction=right &lt;em&gt;behavior=alternate&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;(Result when inserted onto one line:)&lt;br /&gt;&lt;MARQUEE width=200 direction=right behavior=alternate&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;You can also use &lt;strong&gt;behavior=slide&lt;/strong&gt;.&lt;br /&gt;A normal marquee uses &lt;strong&gt;behavior=scroll&lt;/strong&gt;.&lt;br /&gt;Yeah, yeah...&lt;br /&gt;Let's make a the marquee go slower.&lt;br /&gt;Let's use &lt;strong&gt;scrolldelay&lt;/strong&gt;!&lt;br /&gt;Look at some code using &lt;strong&gt;scrolldelay&lt;/strong&gt;:&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE width=200 direction=right behavior=alternate &lt;em&gt;scrolldelay=500&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;If this tip were inserted onto one little line, look at what happens &lt;br /&gt;(Look below for a LONG time and you'll see what happens):&lt;br /&gt;&lt;MARQUEE width=200 direction=right behavior=alternate scrolldelay=500&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;Remember you can always change the number in front of &lt;strong&gt;scrolldelay=&lt;/strong&gt;.&lt;br /&gt;So, now we got slower marquees.&lt;br /&gt;What about faster marquees?&lt;br /&gt;Instead of &lt;strong&gt;scrolldelay&lt;/strong&gt; we use &lt;strong&gt;scrollamount&lt;/strong&gt; for this:&lt;br /&gt;Look at a code with scrollamount:&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE width=200 direction=right behavior=alternate &lt;em&gt;scrollamount=30&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;If compacted onto one line after the code is pasted in, look at what happens:&lt;br /&gt;&lt;MARQUEE width=200 direction=right behavior=alternate scrollamount=30&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;Remember to change the &lt;strong&gt;scrollamount=&lt;/strong&gt; number, and note that you can try to use scrollamount at the same time as scrolldelay!&lt;br /&gt;Finally, let's make the marquee thing loop just once using &lt;strong&gt;loop=&lt;/strong&gt;:&lt;br /&gt;Let's look at the code:&lt;br /&gt;&lt;strong&gt;&amp;lt;MARQUEE width=200 direction=right behavior=alternate scrollamount=30 &lt;em&gt;loop=2&lt;/em&gt;&amp;gt;&lt;br /&gt;Hi There! &amp;lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82&lt;br /&gt;ALT="google picture in a marquee for this html tip so whatever"&amp;gt;&lt;br /&gt;&amp;lt;/MARQUEE&amp;gt;&lt;/strong&gt;&lt;br /&gt;Let's look at the output of this html put in one line:&lt;br /&gt;&lt;MARQUEE width=200 direction=right behavior=alternate scrollamount=30 loop=2&gt;&lt;br /&gt;Hi There! &lt;IMG SRC="http://www.google.com/images/logo.gif" HEIGHT=33 WIDTH=82 ALT="google picture in a marquee for this html tip so whatever"&gt;&lt;br /&gt;&lt;/MARQUEE&gt;&lt;br /&gt;It loops only twice! Oooh... And also remember that this does not work on all browsers.&lt;br /&gt;Oh wait, by the time you're down here it has already looped twice...&lt;br /&gt;Lastly, remember to change the amount of loops to what you want.&lt;br /&gt;&lt;marquee&gt;So, those are the tips for today!&lt;/marquee&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108630788785654294?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108630788785654294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108630788785654294' title='10 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108630788785654294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108630788785654294'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/weird-tips-for-scrolling-banners.html' title='Weird Tips for Scrolling Banners (Marquees)'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>10</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108613355761163642</id><published>2004-06-01T19:25:00.000-04:00</published><updated>2004-06-01T19:45:57.613-04:00</updated><title type='text'>Creating Numbered Lists</title><content type='html'>Here is some basic code for this html tip.&lt;br /&gt;&lt;strong&gt;&amp;lt;ol&amp;gt;&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 1&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 2&lt;br /&gt;&amp;lt;/ol&amp;gt;&lt;/strong&gt;&lt;br /&gt;It will create a numbered list like this one:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Item Number 1&lt;br /&gt;&lt;li&gt;Item Number 2&lt;/ol&gt;&lt;br /&gt;Also, you can change the code to this:&lt;br /&gt;&lt;strong&gt;&amp;lt;ol type=I&amp;gt;&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 1&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 2&lt;br /&gt;&amp;lt;/ol&amp;gt;&lt;/strong&gt;&lt;br /&gt;And you get the numbers in Roman numerals:&lt;br /&gt;&lt;ol type=I&gt;&lt;li&gt;Item Number 1&lt;br /&gt;&lt;li&gt;Item Number 2&lt;/ol&gt;&lt;br /&gt;You can also change the tip like this:&lt;br /&gt;&lt;strong&gt;&amp;lt;ol type=A&amp;gt;&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 1&lt;br /&gt;&amp;lt;li&amp;gt;Item Number 2&lt;br /&gt;&amp;lt;/ol&amp;gt;&lt;/strong&gt;&lt;br /&gt;Which creates letters instead of numbers:&lt;br /&gt;&lt;ol type=A&gt;&lt;li&gt;Item Number 1&lt;br /&gt;&lt;li&gt;Item Number 2&lt;/ol&gt;&lt;br /&gt;Finally, you can change the &lt;strong&gt;A&lt;/strong&gt; or &lt;strong&gt;I&lt;/strong&gt; after the &lt;strong&gt;type=&lt;/strong&gt; and you will get some lowercase roman numerals  or letters, instead.&lt;br /&gt;This tip will get the information organized in neat ways.&lt;br /&gt;Also, &lt;a href="http://htmltips.blogspot.com/2004/05/making-bullets.html"&gt;see this tip on how to make normal bullets&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108613355761163642?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108613355761163642/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108613355761163642' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108613355761163642'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108613355761163642'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/creating-numbered-lists.html' title='Creating Numbered Lists'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108611746328630789</id><published>2004-06-01T15:15:00.000-04:00</published><updated>2004-06-13T14:02:34.686-04:00</updated><title type='text'>Create a Little Table</title><content type='html'>This html tip will allow you to create tables like this one:&lt;br /&gt;&lt;table style="text-align: left; width: 100%;" border="3" cellspacing="2"cellpadding="2"&gt;&lt;tbody&gt;&lt;tr =""&gt;&lt;td style="vertical-align: top;"&gt;Html Table1&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table2&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="vertical-align: top;"&gt;Html Table3&lt;br&gt;&lt;/td&gt;&lt;td style="vertical-align: top;"&gt;Html Table4&lt;br&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br&gt;&lt;br /&gt;The code for that table was:&lt;br /&gt;&lt;b&gt;&amp;lt;table style="text-align: left; width: 100%;" border="3"&lt;br /&gt;cellpadding="2"&amp;gt;&lt;br /&gt;&amp;lt;tbody&amp;gt;&lt;br /&gt;&amp;lt;tr =""&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table1&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table2&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table3&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table4&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;br /&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;/tbody&amp;gt;&lt;br /&gt;&amp;lt;/table&amp;gt;&lt;br /&gt;&amp;lt;br&amp;gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;When inserting the above code, make sure you put the top two lines onto ONE line.&lt;br /&gt;If you would like to add another cell in an existing row, simply put in another&lt;br /&gt;&lt;b&gt;&amp;lt;td style="vertical-align: top;"&amp;gt;Html Table2&amp;lt;br&amp;gt;&lt;br /&gt;&amp;lt;/td&amp;gt;&lt;/b&gt;&lt;br /&gt;in the appropriate location.&lt;br /&gt;If you would like to add a new row, put in a &lt;br /&gt;&lt;b&gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;&amp;lt;tr&amp;gt;&lt;/b&gt;&lt;br /&gt;in the appropriate location.&lt;br /&gt;Obviously, be sure to change the Html Table text in my example.&lt;br /&gt;You can also fiddle around with the numbers in the code of this html tip, especially stuff in the first line.&lt;br /&gt;This tip can lead to &lt;a href="http://htmltips.blogspot.com/2004/06/make-advanced-tables.html"&gt;more advanced table formatting&lt;/a&gt;.&lt;br /&gt;If you liked this tip, you will probably also like &lt;a href="http://htmltips.blogspot.com/2004/05/how-to-create-basic-form.html"&gt;this tip, which is about forms&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108611746328630789?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108611746328630789/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108611746328630789' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108611746328630789'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108611746328630789'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/06/create-little-table.html' title='Create a Little Table'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108604008861025211</id><published>2004-05-31T17:39:00.000-04:00</published><updated>2004-06-21T12:31:48.623-04:00</updated><title type='text'>How to Create a Basic Form</title><content type='html'>Insert the following code:&lt;br /&gt;&lt;b&gt;&lt;font size=1&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;br /&gt;&amp;lt;TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%"&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD width="30%"&amp;gt;&amp;lt;DIV align="right"&amp;gt;&lt;br /&gt;&amp;lt;B&amp;gt;Name:&amp;lt;/B&amp;gt;&lt;br /&gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD width="70%"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="text" name="name" size="20"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;DIV align="right"&amp;gt;&amp;lt;B&amp;gt;Email:&amp;lt;/B&amp;gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="text" name="email" size="20"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;DIV align="right"&amp;gt;&lt;br /&gt;&amp;lt;B&amp;gt;Comment:&amp;lt;/B&amp;gt;&lt;br /&gt;&amp;lt;/DIV&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;TEXTAREA name="comment" cols="30" wrap="virtual"rows="4"&amp;gt;&lt;br /&gt;&amp;lt;/TEXTAREA&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&amp;amp;nbsp;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;lt;TD&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="submit" name="submit" value="Submit"&amp;gt;&lt;br /&gt;&amp;lt;INPUT type="reset" name="reset" value="Reset"&amp;gt;&lt;br /&gt;&amp;lt;/TD&amp;gt;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;/TABLE&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/font&gt;&lt;/b&gt;&lt;br&gt;&lt;br /&gt;And you will have a form like this:&lt;br&gt;&lt;br /&gt;&lt;FORM action="mailto:nilsmolina@comcast.net" method="post" enctype="text/plain"&gt;&lt;TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%"&gt;&lt;TR&gt;&lt;TD width="30%"&gt;&lt;DIV align="right"&gt;&lt;B&gt;Name:&lt;/B&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD width="70%"&gt;&lt;INPUT type="text" name="name" size="20"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;DIV align="right"&gt;&lt;B&gt;Email:&lt;/B&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;INPUT type="text" name="email" size="20"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;DIV align="right"&gt;&lt;B&gt;Comment:&lt;/B&gt;&lt;/DIV&gt;&lt;/TD&gt;&lt;TD&gt;&lt;TEXTAREA name="comment" cols="30" wrap="virtual" rows="4"&gt;&lt;/TEXTAREA&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;INPUT type="submit" name="submit" value="Submit"&gt;&lt;INPUT type="reset" name="reset" value="Reset"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;/FORM&gt;&lt;br&gt;&lt;br /&gt;Make sure you change, in the code, the e-mail adress which I have in italics.&lt;br /&gt;Also make sure to cram the code into a small amount of lines. (Do not put &lt;b&gt;&amp;lt;FORM action="mailto:&lt;em&gt;nilsmolina@comcast.net&lt;/em&gt;" method="post" enctype="text/plain"&amp;gt;&lt;/b&gt; on two lines).&lt;br /&gt;This html tip will allow you to connect and get input from users.&lt;br&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/06/create-more-advanced-forms.html"&gt;Click here to create more advanced, much classier forms.&lt;/a&gt;&lt;br /&gt;&lt;em&gt;&lt;br /&gt;NOTE: Problems may occur when trying to e-mail yourself.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108604008861025211?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108604008861025211/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108604008861025211' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108604008861025211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108604008861025211'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/how-to-create-basic-form.html' title='How to Create a Basic Form'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108601350728712409</id><published>2004-05-31T10:05:00.000-04:00</published><updated>2004-05-31T10:25:07.286-04:00</updated><title type='text'>Protection from Spam Robots</title><content type='html'>Do you want to post your email adress on your web site, only to realize that doing so will probably bring you spam?  Here is a way to avoid getting your email adress taken by spam robots that search HTML code.  &lt;br /&gt;&lt;br /&gt;In your HTML code, display your email adress as:&lt;br /&gt;&lt;br /&gt;you&lt;strong&gt;&amp;amp;#64;&lt;/strong&gt;random.com &lt;br /&gt;&lt;br /&gt;This displays as:&lt;br /&gt;&lt;br /&gt;you&amp;#64;random.com&lt;br /&gt;&lt;br /&gt;The same thing goes for a link.  Writing&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="mailto:you&amp;amp;#64;random.com"&amp;gt;Email me!&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;in the code gives you:&lt;br /&gt;&lt;br /&gt;&lt;a href="mailto:you&amp;#64;random.com"&gt;Email me!&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Let people contact you and keep yourself protected from spam easily using this tip.  Remember, &amp;amp;#64; = &amp;#64;.  &lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108601350728712409?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108601350728712409/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108601350728712409' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108601350728712409'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108601350728712409'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/protection-from-spam-robots.html' title='Protection from Spam Robots'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108592619580493629</id><published>2004-05-30T10:00:00.000-04:00</published><updated>2006-02-02T20:26:48.540-05:00</updated><title type='text'>Making An Image a Link</title><content type='html'>This code will create the google logo which will link to the html tips homepage:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://www.google.com"&lt;br /&gt;Title="Link to Google"&amp;gt;&amp;lt;img&lt;br /&gt;src="http://www.google.com/images/logo.gif"&lt;br /&gt;alt="Link to Google"&amp;gt;&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;Insert the code above onto one line and you will get this:&lt;br /&gt;&lt;a href="http://www.google.com"title="Link to Google"&gt;&lt;img src="http://www.google.com/images/logo.gif"alt="Link to Google"&gt;&lt;/a&gt;&lt;br /&gt;After you have inserted the code, change the title, the url, the image source, and &lt;a href="http://htmltips.blogspot.com/2004/05/alternative-text-for-images.html#comments"&gt;the alternate text (alt)&lt;/a&gt;, and you will be done.&lt;br /&gt;&lt;br /&gt;Make many links in one image &lt;a href="http://htmltips.blogspot.com/2006/02/images-clickable-in-different-areas.html"&gt;in these html tips and tricks&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108592619580493629?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108592619580493629/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108592619580493629' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108592619580493629'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108592619580493629'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/making-image-link.html' title='Making An Image a Link'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108579411885335866</id><published>2004-05-28T21:02:00.000-04:00</published><updated>2005-05-12T17:06:19.016-04:00</updated><title type='text'>Tips for Formatting Text</title><content type='html'>Plain old text needs a few html tips.&lt;br /&gt;That is why I will show some html which will improve plain old text.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Html Tip 1&lt;/em&gt;&lt;/strong&gt;: To insert plain old text simply insert any text between the &amp;lt;body&amp;gt; and &amp;lt;/body&amp;gt; tags.&lt;br /&gt;Example:&lt;br /&gt;This is html text&lt;br /&gt;Code:&lt;br /&gt;&lt;strong&gt;This is html text&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Html Tip 2&lt;/em&gt;&lt;/strong&gt;: To make text bold, underlined, or be in italics, add the corresponding tag on the sides of the text.&lt;br /&gt;To make text &lt;em&gt;bold&lt;/em&gt;, insert the &lt;em&gt;&amp;lt;b&amp;gt;&lt;/em&gt; and &lt;em&gt; &amp;lt;/b&amp;gt;&lt;/em&gt; tags on the sides of the text.&lt;br /&gt;To make text in &lt;em&gt;italics&lt;/em&gt;, insert the &lt;em&gt;&amp;lt;i&amp;gt;&lt;/em&gt; and &lt;em&gt; &amp;lt;/i&amp;gt;&lt;/em&gt; tags on the sides of the text.&lt;br /&gt;To make &lt;em&gt;underlined&lt;/em&gt;, insert the &lt;em&gt;&amp;lt;u&amp;gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/u&amp;gt;&lt;/em&gt; tags on the sides of text.&lt;br /&gt;And, finally, here is a bonus tip:&lt;br /&gt;You can put a line through text by placing the &lt;s&gt; and &lt;/s&gt; tags on the sides of the text.&lt;br /&gt;Example:&lt;br /&gt;&lt;i&gt;This is html text in italics.&lt;/i&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;strong&gt;&amp;lt;i&amp;gt;This is html text in italics&amp;lt;/i&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Html Tip 3&lt;/em&gt;&lt;/strong&gt;: To change the font itself, font size and colors, look at this:&lt;br /&gt;To change the color:&lt;br /&gt;add the &lt;em&gt;&amp;lt;FONT COLOR="&lt;/em&gt;color name in english&lt;em&gt;"&amp;gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/font color&amp;gt;&lt;/em&gt; to the sides of the text.&lt;br /&gt;To change the font size:&lt;br /&gt;add the &lt;em&gt;&amp;lt;font size=&lt;/em&gt;number from 1-7&lt;em&gt;&amp;gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/font&amp;gt;&lt;/em&gt; to the sides of the text.&lt;br /&gt;To change the font:&lt;br /&gt;add the &lt;em&gt;&amp;lt;font face="&lt;/em&gt;font name&lt;em&gt;"&gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/font&amp;gt;&lt;/em&gt; to the sides of the text.&lt;br /&gt;In addition, you can put commas between different fonts like this:&lt;br /&gt;&lt;strong&gt;&amp;lt;font face="&lt;em&gt;artistik,arial&lt;/em&gt;"&amp;gt;This can be in different fonts.&amp;lt;/font&amp;gt;&lt;/strong&gt;&lt;br /&gt;This html code creates text which will be in the artistik font. However, if the computer does not have an artistik font, then the text will be written in arial.&lt;br /&gt;Here is what the html does on your computer:&lt;br /&gt;&lt;span style="font-family:artistik,arial;"&gt;This can be in different fonts&lt;/span&gt;&lt;br /&gt;Here is another example of changing the font size, text or colors:&lt;br /&gt;&lt;strong&gt;&amp;lt;font color="red"&amp;gt;This is html text in red&amp;lt;/font&amp;gt;&lt;/strong&gt;&lt;br /&gt;And that creates this:&lt;br /&gt;&lt;span style="color:red;"&gt;This is html text in red&lt;/span&gt;&lt;br /&gt;And finally, another example for people who really like changing fonts:&lt;br /&gt;&lt;strong&gt;&lt;br /&gt;&amp;lt;b&amp;gt;&lt;br /&gt;&amp;lt;font color="red" font size=5 font face="artistik,times,arial"&amp;gt;Fancy html text&amp;lt;/font&amp;gt;&lt;br /&gt;&amp;lt;/b&amp;gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;And that html creates this:&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;span font=""    style="font-family:artistik,times,arial;font-size:180%;color:red;"&gt;Fancy html text&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;em&gt;Html Tip 4&lt;/em&gt;&lt;/strong&gt;: It is sometimes useful to move text around a little.&lt;br /&gt;Here are some nice tags:&lt;br /&gt;To &lt;em&gt;start a new paragraph&lt;/em&gt;, simply insert &lt;em&gt;&amp;lt;p&amp;gt;&lt;/em&gt;&lt;br /&gt;To &lt;em&gt;center text&lt;/em&gt;, simply insert &lt;em&gt;&amp;lt;center&amp;gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/center&amp;gt;&lt;/em&gt; to the sides of the text you want centered.&lt;br /&gt;To &lt;em&gt;align text to the right&lt;/em&gt;, simply insert &lt;em&gt;&amp;lt;div style="text-align: right;"&amp;gt;&lt;/em&gt; and &lt;em&gt;&amp;lt;/div&amp;gt;&lt;/em&gt; on the sides of the text you want to be aligned to the right.&lt;br /&gt;To &lt;em&gt;start a new line&lt;/em&gt;, simply insert &lt;em&gt;&amp;lt;br&amp;gt;&lt;/em&gt;.&lt;br /&gt;&lt;br /&gt;Now there is some nice html to make your site look great!&lt;br /&gt;&lt;br /&gt;Related Tips:&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/having-columns-like-in-newspaper.html"&gt;Having Columns Like in a Newspaper&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2005/05/blockquote.html"&gt;Blockquotes&lt;/a&gt;&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/06/align-textimages.html"&gt;Align Text and Images&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108579411885335866?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108579411885335866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108579411885335866' title='6 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108579411885335866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108579411885335866'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/tips-for-formatting-text.html' title='Tips for Formatting Text'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>6</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108569647655920317</id><published>2004-05-27T18:19:00.000-04:00</published><updated>2004-05-28T20:58:50.146-04:00</updated><title type='text'>Having Columns Like in a Newspaper</title><content type='html'>&lt;TABLE BORDER="0"&gt;&lt;TR&gt;&lt;TD WIDTH="30%" VALIGN="TOP"&gt;This is column 1 and this is column 1 and this is still column 1&lt;BR&gt;&lt;/TD&gt;&lt;TD WIDTH="5%"&gt;&lt;/TD&gt;&lt;TD WIDTH="30%" VALIGN="TOP"&gt;This is column 2 and this is column 2 and this is still column 2&lt;BR&gt;&lt;/TD&gt;&lt;TD WIDTH="5%"&gt;&lt;/TD&gt;&lt;TD WIDTH="30%" VALIGN="TOP"&gt;This is column 3 and this is column 3 and this is still column 3&lt;BR&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TABLE&gt;&lt;br /&gt;The source code for the colums was this:&lt;br /&gt;&lt;strong&gt;&lt;p&gt;&amp;lt;TABLE BORDER=&amp;quot;0&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TR&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TD WIDTH=&amp;quot;30%&amp;quot; VALIGN=&amp;quot;TOP&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; This is column 1 and this is column 1 and this is still column 1&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TD WIDTH=&amp;quot;5%&amp;quot;&amp;gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TD WIDTH=&amp;quot;30%&amp;quot; VALIGN=&amp;quot;TOP&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; This is column 2 and this is column 2 and this is still column 2&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TD WIDTH=&amp;quot;5%&amp;quot;&amp;gt;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;TD WIDTH=&amp;quot;30%&amp;quot; VALIGN=&amp;quot;TOP&amp;quot;&amp;gt;&lt;br /&gt;&amp;nbsp; This is column 3 and this is column 3 and this is still column 3&amp;lt;BR&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/TD&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;lt;/TR&amp;gt;&lt;br /&gt;&amp;lt;/TABLE&amp;gt;&lt;br&gt;&lt;br /&gt;&amp;nbsp;&lt;/p&gt;&lt;/strong&gt;&lt;br /&gt;When inserting the code, make sure you put it into very few lines.&lt;br /&gt;Change all the little percentages to adjust the coloums, and also make sure you change the text.&lt;br /&gt;This html tip will help your page be professional.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108569647655920317?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108569647655920317/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108569647655920317' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108569647655920317'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108569647655920317'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/having-columns-like-in-newspaper.html' title='Having Columns Like in a Newspaper'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108552903523343094</id><published>2004-05-25T19:38:00.000-04:00</published><updated>2004-05-26T16:02:22.316-04:00</updated><title type='text'>How To Show HTML To People</title><content type='html'>Have you ever tried to show HTML code to people, only to have it really operate?&lt;br /&gt;For example, you type in &lt;br /&gt;&amp;lt;b&amp;gt;bold&amp;lt;/b&amp;gt; and you just get this:&lt;br /&gt;&lt;b&gt;bold&lt;/b&gt;&lt;br /&gt;This is how people (including us) display HTML tags:&lt;br /&gt;In the previous example, we used &amp;lt;b&amp;gt;bold&amp;lt;/b&amp;gt; as the displayed code.  This is how I wrote that:&lt;br /&gt;&lt;strong&gt;&amp;amp;lt;&lt;/strong&gt;b&lt;strong&gt;&amp;amp;gt;&lt;/strong&gt;bold&lt;strong&gt;&amp;amp;lt;&lt;/strong&gt;/b&lt;strong&gt;&amp;amp;gt;&lt;/strong&gt;&lt;br /&gt;Look complicated? It's not.  Let's break it down.  &lt;br /&gt;The first part is &lt;br /&gt;&lt;strong&gt;&amp;lt;b&amp;gt;&lt;/strong&gt;&lt;br /&gt;This is written as &lt;br /&gt;&lt;strong&gt;&amp;amp;lt;&lt;/strong&gt;b&lt;strong&gt;&amp;amp;gt;&lt;/strong&gt;&lt;br /&gt;Ever noticed how the things around the tags are greater and less than signs (&amp;lt;,&amp;gt;)?  Well, that is used here.  &amp; &lt;strong&gt;l&lt;/strong&gt; &lt;strong&gt;t&lt;/strong&gt; ; is used for &lt;strong&gt;l&lt;/strong&gt;ess &lt;strong&gt;t&lt;/strong&gt;han and &amp; &lt;strong&gt;g&lt;/strong&gt; &lt;strong&gt;t&lt;/strong&gt; ; is used for &lt;strong&gt;g&lt;/strong&gt;reater &lt;strong&gt;t&lt;/strong&gt;han.  &lt;br /&gt;That's essentially all you need to know!&lt;br /&gt;&lt;strong&gt;&amp;amp;lt;   =     &amp;lt;&lt;br /&gt;&amp;amp;gt;   =     &amp;gt;&lt;/strong&gt;&lt;br /&gt;Now you can show people HTML on your website!&lt;br /&gt;&lt;br /&gt;&lt;em&gt;NOTE FROM NILS: In addition, &lt;/em&gt;&lt;strong&gt;&lt;em&gt;&amp;amp; = &amp;amp;amp;&lt;/em&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;em&gt;NOTE FROM GEOFFREY: To show people how to show people how to make HTML, remember to use &lt;strong&gt;&amp;amp;amp;&lt;/strong&gt; as an &amp;amp;.  So to write &amp;amp;lt; you would write &lt;strong&gt;&amp;amp;amp;lt;&lt;/strong&gt;&lt;/em&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108552903523343094?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108552903523343094/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108552903523343094' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108552903523343094'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108552903523343094'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/how-to-show-html-to-people.html' title='How To Show HTML To People'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108552744578216188</id><published>2004-05-25T19:18:00.000-04:00</published><updated>2004-06-03T21:07:05.266-04:00</updated><title type='text'>Marquees: Scrolling Banners</title><content type='html'>Have you ever wanted to have a scrolling banner (marquee) that goes across your web page and attracts people's attention?&lt;br /&gt;Use this simple code:&lt;br /&gt;&lt;strong&gt;&amp;lt;marquee bgcolor=pickacolor&amp;gt;THIS IS IN MY MARQUEE&amp;lt;/marquee&amp;gt;&lt;/strong&gt;&lt;br /&gt;If I type yellow in the bgcolor place that gives you:&lt;br /&gt;&lt;marquee bgcolor=yellow &gt;THIS IS IN MY MARQUEE&lt;/marquee&gt;&lt;br /&gt;You can also just have &lt;br /&gt;&amp;lt;marquee&amp;gt;THIS IS IN MY MARQUEE&amp;lt;/marquee&amp;gt;&lt;br /&gt;with no bgcolor value which gives you:&lt;br /&gt;&lt;marquee&gt;THIS IS IN MY MARQUEE&lt;/marquee&gt;&lt;br /&gt;So use this code to attract attention and to keep your viewers on your site!&lt;br /&gt;&lt;br /&gt;&lt;i&gt;Note from Geoffrey:The background color only works for Internet Explorer.&lt;/i&gt;&lt;br /&gt;&lt;em&gt;Note from Nils:&lt;a href="http://htmltips.blogspot.com/2004/06/weird-tips-for-scrolling-banners.html"&gt;Now click here to get more advanced!&lt;/a&gt;&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108552744578216188?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108552744578216188/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108552744578216188' title='35 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108552744578216188'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108552744578216188'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/marquees-scrolling-banners.html' title='Marquees: Scrolling Banners'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>35</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108543741323368857</id><published>2004-05-24T18:21:00.000-04:00</published><updated>2005-05-12T20:12:44.753-04:00</updated><title type='text'>Javascript: Dialog Boxes</title><content type='html'>Here is a normal button that does nothing:&lt;br /&gt;&lt;form method="POST"&gt;&lt;br /&gt;&lt;input type=reset value="Button"&gt;&lt;br /&gt;&lt;/form&gt;&lt;br /&gt;This code made the button:&lt;br /&gt;&lt;strong&gt;&amp;lt;form method="POST"&amp;gt;&lt;br /&gt;&amp;lt;input type=reset value="Button"&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/strong&gt;&lt;br /&gt;If you want the button to show a dialog box after being clicked, edit the code to this:&lt;br /&gt;&lt;strong&gt;&amp;lt;form method="POST"&amp;gt;&lt;br /&gt;&amp;lt;input type=reset value="Alert" OnClick="alert( This is an alert! )"&amp;gt;&lt;br /&gt;&amp;lt;/form&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;That results in:&lt;br /&gt;&lt;br /&gt;&lt;form method="post"&gt;&lt;br /&gt;&lt;input type="reset" value="Alert" OnClick="alert('This is an alert!')"&gt;&lt;br /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108543741323368857?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108543741323368857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108543741323368857' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108543741323368857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108543741323368857'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/javascript-dialog-boxes.html' title='Javascript: Dialog Boxes'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108534389881823895</id><published>2004-05-23T16:13:00.000-04:00</published><updated>2005-05-13T20:54:30.623-04:00</updated><title type='text'>Javascript: Back and Forward Links on Your Site</title><content type='html'>In this html tip, you can have little buttons or links which copy the functions of your browsers back and forward buttons.&lt;br /&gt;Let's show you how to make buttons:&lt;br /&gt;&lt;strong&gt;&amp;lt;FORM METHOD="post"&amp;gt;&lt;br /&gt;&amp;lt;INPUT TYPE="button" &lt;br /&gt;      VALUE="BACK" &lt;br /&gt;    OnClick="history.go( -1 );return true;"&amp;gt;&lt;br /&gt;&amp;lt;INPUT TYPE="button" &lt;br /&gt;      VALUE="FORWARD" &lt;br /&gt;    OnClick="history.go(  1 );return true;"&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/strong&gt;&lt;br /&gt;If you insert this code onto one line, you get this:&lt;br /&gt;&lt;FORM METHOD="post"&gt;&lt;INPUT TYPE="button" VALUE="BACK" OnClick="history.go( -1 );return true;"&gt;&lt;INPUT TYPE="button" VALUE="FORWARD" OnClick="history.go(  1 );return true;"&gt;&lt;/FORM&gt;&lt;br /&gt;You can delete the forward button section and you only get a back button.&lt;br /&gt;This is the code for only a back button: (remember to put it on ONE line)&lt;br /&gt;&lt;strong&gt;&amp;lt;FORM METHOD="post"&amp;gt;&lt;br /&gt;&amp;lt;INPUT TYPE="button" &lt;br /&gt;      VALUE=&lt;em&gt;"BACK"&lt;/em&gt; &lt;br /&gt;    OnClick="history.go( -1 );return true;"&amp;gt;&lt;br /&gt;&amp;lt;/FORM&amp;gt;&lt;/strong&gt;&lt;br /&gt;If you change the &lt;strong&gt;VALUE=&lt;em&gt;"BACK"&lt;/em&gt;&lt;/strong&gt; to something else, too, you can get something like this:&lt;br /&gt;&lt;FORM METHOD="post"&gt;&lt;INPUT TYPE="button" VALUE="Go to the beautiful page you visited previously" OnClick="history.go( -1 );return true;"&gt;&lt;/FORM&gt;&lt;br /&gt;Nice, eh?&lt;br /&gt;Hyperlinks are a bit simpler:&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="javascript:history.go(-1)"&amp;gt;Go back&amp;lt;/A&amp;gt;&lt;br /&gt;&amp;lt;A HREF="javascript:history.go(1)"&amp;gt;Go forward&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;That code makes this:&lt;br /&gt;&lt;A HREF="javascript:history.go(-1)"&gt;Go back&lt;/A&gt;&lt;br /&gt;&lt;A HREF="javascript:history.go(1)"&gt;Go forward&lt;/A&gt;&lt;br /&gt;Edit the code a bit after you have inserted it, and you are done with this.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;NOTE: Always make sure you have the most recent browser and javascript plugins.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108534389881823895?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108534389881823895/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108534389881823895' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108534389881823895'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108534389881823895'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/javascript-back-and-forward-links-on.html' title='Javascript: Back and Forward Links on Your Site'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108509473152699048</id><published>2004-05-20T19:05:00.000-04:00</published><updated>2004-05-20T19:12:11.526-04:00</updated><title type='text'>Have a Title </title><content type='html'>Look at the top, top, top of your browser window.&lt;br /&gt;It should say something like: Html Tips and Tricks&lt;br /&gt;Also look elsewhere on the monitor, and the name may show up somewhere else, too. &lt;br /&gt;It might show up at the bottom, bottom, bottom depending on the OS you are using.&lt;br /&gt;Let's say that on your website, the top of the browser window says: New Page 1.&lt;br /&gt;That's BOR-ING, isn't it?&lt;br /&gt;To change it, simply insert the below html code:&lt;br /&gt;&lt;strong&gt;&amp;lt;title&amp;gt;Htmltips.blogspot.com Rocks!&amp;lt;/title&amp;gt;&lt;/strong&gt;&lt;br /&gt;Okay, fine, if you want you can change the text a bit.&lt;br /&gt;But, yes, how about you have a title?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108509473152699048?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108509473152699048/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108509473152699048' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509473152699048'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509473152699048'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/have-title.html' title='Have a Title '/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108509374991562247</id><published>2004-05-20T18:52:00.000-04:00</published><updated>2004-05-22T09:20:10.433-04:00</updated><title type='text'>Making Bullets</title><content type='html'>Making a bullet is as easy as making a link!&lt;br /&gt;This is what you do for this html tip:&lt;br /&gt;Look at this bullet:&lt;br /&gt;&lt;li&gt;This is next to a bullet&lt;/li&gt;&lt;br /&gt;It was made with this simple code:&lt;br /&gt;&lt;strong&gt;&amp;lt;li&amp;gt;This is next to a bullet&amp;lt;/li&amp;gt;&lt;/strong&gt;&lt;br /&gt;Insert the above code to your web page,&lt;br /&gt;and then change the message to suit you needs.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108509374991562247?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108509374991562247/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108509374991562247' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509374991562247'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509374991562247'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/making-bullets.html' title='Making Bullets'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108509262858094952</id><published>2004-05-20T18:27:00.000-04:00</published><updated>2005-05-15T13:55:39.166-04:00</updated><title type='text'>Describe Your Links Another Way</title><content type='html'>Move your mouse over to this link,&lt;br /&gt;and keep it still for a few seconds:&lt;br /&gt;&lt;A HREF="http://www.google.com"TITLE="Click here to go to google"&gt;Google&lt;/A&gt;&lt;br /&gt;Wouldn't your links look great with those little things?&lt;br /&gt;Here is how to have them on your website.&lt;br /&gt;Look at the code making a normal link:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://www.google.com"&amp;gt;Google&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;Here is the normal link:&lt;br /&gt;&lt;a href="http://www.google.com"&gt;Google&lt;/A&gt;&lt;br /&gt;And look at the code making the link we looked at first:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://www.google.com"&lt;em&gt;TITLE="Click here to go to google"&lt;/em&gt;&amp;gt;Google&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;So just insert the above code onto one line, edit it a bit, and you get a really nice link!&lt;br /&gt;This html tip will add some salt and pepper.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108509262858094952?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108509262858094952/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108509262858094952' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509262858094952'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108509262858094952'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/describe-your-links-another-way.html' title='Describe Your Links Another Way'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108501203811523381</id><published>2004-05-19T20:04:00.000-04:00</published><updated>2004-05-22T09:22:14.190-04:00</updated><title type='text'>Describe Your Links</title><content type='html'>This tip will only work with java enabled browsers...&lt;br /&gt;To add a little spice to your links, look at this:&lt;br /&gt;Look at a normal link: (click on it)&lt;br /&gt;&lt;a href="http://www.google.com"&gt;google&lt;/a&gt;&lt;br /&gt;The link was made with this code:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://www.google.com"&amp;gt;google&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;Let's add this after the url:&lt;br /&gt;&lt;em&gt;OnMouseOver = "window.status='click here to go to google'; return true;"&lt;/em&gt;&lt;br /&gt;And the code becomes this:&lt;br /&gt;&lt;strong&gt;&amp;lt;a href="http://www.google.com" OnMouseOver = "window.status='click here to go to google'; return true;"&amp;gt;google&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;And the link becomes this:&lt;br /&gt;&lt;a href="http://www.google.com" OnMouseOver = "window.status='click here to go to google'; return true;"&gt;google&lt;/a&gt;&lt;br /&gt;Move your mouse to the link and look at the bottom of your web browser.&lt;br /&gt;Wow. It says "click here to go to google" * What a nice html tip!&lt;br /&gt;Modify the html code to your needs and you'll get a nice spiced up web page!&lt;br /&gt;&lt;br /&gt;* &lt;i&gt;Note from Geoffrey: If you don't have a bar at the bottom of your screen in Internet Explorer, go to the View menu and click on Status Bar.  A bar will show up at the bottom of the screen displaying where a link will go (or, in this case, what its name is).  &lt;/i&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108501203811523381?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108501203811523381/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108501203811523381' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108501203811523381'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108501203811523381'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/describe-your-links.html' title='Describe Your Links'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108499818684025434</id><published>2004-05-19T16:18:00.000-04:00</published><updated>2004-05-19T16:51:50.706-04:00</updated><title type='text'>Having a Button On Your Site</title><content type='html'>&lt;form action="http://www.google.com" method="GET"&gt;&lt;input type="submit" value="Google"&gt;&lt;br /&gt;Doesn't that button look charming?&lt;br /&gt;Try clicking on it.&lt;br /&gt;If you want a button like that on your site,&lt;br /&gt;insert the code below:&lt;br /&gt;&lt;strong&gt;&amp;lt;form action="&lt;em&gt;http://www.google.com&lt;/em&gt;" method="GET"&gt;&lt;br /&gt;&amp;lt;input type="submit" name="anything" value="&lt;em&gt;Google&lt;/em&gt;"&amp;gt;&lt;/strong&gt;&lt;br /&gt;Simply change what I have in italics, &lt;br /&gt;and you are on your way to have a button on your site!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108499818684025434?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108499818684025434/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108499818684025434' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108499818684025434'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108499818684025434'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/having-button-on-your-site.html' title='Having a Button On Your Site'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108499757504882712</id><published>2004-05-19T16:05:00.000-04:00</published><updated>2004-05-30T10:16:09.206-04:00</updated><title type='text'>Make This Your Homepage (Internet Explorer)</title><content type='html'>If you have IE (Internet Explorer), than I have an html tip for your website!&lt;br /&gt;Look at the link below, and click on it.&lt;br /&gt;&lt;SPAN STYLE="cursor:hand; color:blue; text-decoration:underline" onClick="this.style.behavior='url(#default#homepage)';this.setHomePage('http://htmltips.blogspot.com');"&gt;Make This Your Homepage&lt;/SPAN&gt; &lt;br /&gt;Did you see that IE set http://htmltips.blogspot.com as the homepage?&lt;br /&gt;Do you want to have a nice link on your website which will do the same?&lt;br /&gt;Simply look at the code below:&lt;br /&gt;&lt;strong&gt;&amp;lt;SPAN STYLE="cursor:hand; color:blue; text-decoration:underline" onClick="this.style.behavior='url(#default#homepage)'&lt;br /&gt;;this.setHomePage('http://htmltips.blogspot.com');"&amp;gt;&lt;br /&gt;Make This Your Homepage&amp;lt;/SPAN&amp;gt;&lt;/strong&gt;&lt;br /&gt;You can change the url or the message to suit your needs when you insert the html code.&lt;br /&gt;Remember to cram the html code onto ONE line.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;Note from Geoffrey: To change your home page back to the correct web page from http://htmltips.blogspot.com, in Internet Explorer go to the Tools menu, then click on Internet Options.  The first item at the top will be a text box enabling you to switch your home page to whatever you want.  &lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108499757504882712?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108499757504882712/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108499757504882712' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108499757504882712'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108499757504882712'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/make-this-your-homepage-internet.html' title='Make This Your Homepage (Internet Explorer)'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108492291278987589</id><published>2004-05-18T19:14:00.000-04:00</published><updated>2004-05-18T19:45:31.973-04:00</updated><title type='text'>Alternative Text for Images</title><content type='html'>Another tip for image coding in HTML is alternative text.  This text shows up in case the graphic does not show up, and also is displayed when the user holds their mouse over an image.  Take the Google logo, for example.  If I want to display, "This website rocks!" when you hold your mouse over the image, or if it doesn't load, I will use this code:&lt;br /&gt;&lt;strong&gt;&amp;lt;IMG SRC="http://www.google.com/images/logo.gif" ALT="This website rocks!"&amp;gt&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;This gives me this result (drag your mouse over it and hold it still for a few seconds):&lt;br /&gt;&lt;img src="http://www.google.com/images/logo.gif" alt="This website rocks!"&gt;&lt;br /&gt;&lt;br /&gt;The alternative text will also show up when the graphic isn't coded correctly like this:&lt;br /&gt;&lt;br /&gt;&amp;lt;IMG SRC="http://www.google.com/images/logo&lt;strong&gt;arughaj&lt;/strong&gt;.gif" ALT="This website rocks!"&amp;gt&lt;br /&gt;&lt;br /&gt;That bad code gives me this:&lt;br /&gt;&lt;br /&gt;&lt;img src="http://www.google.com/images/logoarughaj.gif" alt="This website rocks!"&gt;&lt;br /&gt;&lt;br /&gt;As you can see, alternative text is very handy and a good way to manage images.  &lt;br /&gt;&lt;br /&gt;Also, if you can't get an image to come up, make sure you have http:// written at the beginning, not just www.!  &lt;br /&gt;&lt;br /&gt;&lt;em&gt;NOTE FROM NILS: Some of the information shown above may not work on some browsers exactly as described. The information above is accurate for Internet Explorer, however.&lt;/em&gt;&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108492291278987589?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108492291278987589/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108492291278987589' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108492291278987589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108492291278987589'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/alternative-text-for-images.html' title='Alternative Text for Images'/><author><name>GL</name><uri>http://www.blogger.com/profile/03867464821610761808</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108492103340042181</id><published>2004-05-18T18:51:00.000-04:00</published><updated>2004-05-18T18:57:13.400-04:00</updated><title type='text'>Aligning Images</title><content type='html'>This is how to insert an image with html:&lt;br /&gt;&lt;strong&gt;&amp;lt;img src=http://www.google.com/images/logo.gif&amp;gt;&lt;/strong&gt;&lt;br /&gt;However, if you want to align it left or right, simply change the code&lt;br /&gt;like this:&lt;br /&gt;&lt;strong&gt;&amp;lt;img align="left" src=http://www.google.com/images/logo.gif&amp;gt;&lt;/strong&gt;&lt;br /&gt;You can also change the left to right.&lt;br /&gt;And also remember to change the url to the url of a picture you want.&lt;br /&gt;I aligned this google icon to the right side:&lt;br /&gt;&lt;img align="right" src=http://www.google.com/images/logo.gif&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108492103340042181?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108492103340042181/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108492103340042181' title='14 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108492103340042181'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108492103340042181'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/aligning-images.html' title='Aligning Images'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>14</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108483470264815471</id><published>2004-05-17T18:53:00.000-04:00</published><updated>2004-05-17T18:59:48.940-04:00</updated><title type='text'>Open a Page in a New Window</title><content type='html'>To have a link in which, when a viewer presses it, will open a page in a new window, you need to listen to this:&lt;br /&gt;Insert something like this:&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="http://www.google.com/" TARGET="_blank"&amp;gt;Open Google in a New Window&amp;lt;/a&amp;gt;&lt;/strong&gt;&lt;br /&gt;And look at what happens:&lt;br /&gt;&lt;A HREF="http://www.google.com/" TARGET="_blank"&gt;Open Google in a New Window&lt;/a&gt;&lt;br /&gt;You see?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108483470264815471?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108483470264815471/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108483470264815471' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483470264815471'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483470264815471'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/open-page-in-new-window.html' title='Open a Page in a New Window'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108483439843879133</id><published>2004-05-17T18:47:00.000-04:00</published><updated>2004-05-18T19:47:11.366-04:00</updated><title type='text'>Automatically Redirect Visitors</title><content type='html'>To redirect anyone who visits your site, automatically, you just need to insert html:&lt;br /&gt;&lt;strong&gt;&amp;lt;meta HTTP-EQUIV="REFRESH" &lt;em&gt;content="0"&lt;/em&gt;; url=http://www.google.com"&amp;gt;&lt;/strong&gt;&lt;br /&gt;See the content = "0" thing? &lt;br /&gt;Change the zero to change the amount of seconds before your viewer will be redirected.&lt;br /&gt;I decided not to show an example on this site.&lt;br /&gt;&lt;br /&gt;&lt;em&gt;NOTE FROM NILS: People with blogs on blogspot may experience problems with the tip above.&lt;/em&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108483439843879133?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108483439843879133/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108483439843879133' title='5 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483439843879133'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483439843879133'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/automatically-redirect-visitors.html' title='Automatically Redirect Visitors'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>5</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108483380436651121</id><published>2004-05-17T18:32:00.000-04:00</published><updated>2004-05-17T18:45:15.563-04:00</updated><title type='text'>Linking to Other Parts of the Same Webpage</title><content type='html'>Before you can link to a part of your webpage you need to mark that part of the web page.&lt;br /&gt;You do this by inserting this into the webpage:&lt;br /&gt;&lt;strong&gt;&amp;lt;A NAME="Anyname"&amp;gt;Bla, bla, bla&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;This is how it looks to the viewer: &lt;br /&gt;&lt;A NAME="Anyname"&gt;Bla, bla, bla&lt;/A&gt;&lt;br /&gt;Then, you make the link. Here's the code:&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="#Anyname"&amp;gt;Go back to bla, bla, bla&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;Here's the output: (See what happens)&lt;br /&gt;&lt;A HREF="#Anyname"&gt;Go back to bla, bla, bla&lt;/A&gt;&lt;br /&gt;Oooh... Aaah...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108483380436651121?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108483380436651121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108483380436651121' title='12 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483380436651121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483380436651121'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/linking-to-other-parts-of-same-webpage.html' title='Linking to Other Parts of the Same Webpage'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>12</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108483296770207120</id><published>2004-05-17T18:15:00.000-04:00</published><updated>2004-05-30T10:18:53.570-04:00</updated><title type='text'>Resizing Images</title><content type='html'>Everybody knows how to put an image in html code:&lt;br /&gt;Code:&lt;br /&gt;&lt;strong&gt;&amp;lt;IMG SRC="http://www.google.com/images/logo.gif"&amp;gt&lt;/strong&gt;&lt;br /&gt;What it looks like to the viewer:&lt;br /&gt;&lt;IMG SRC="http://www.google.com/images/logo.gif"&gt;&lt;br /&gt;To resize your image do something like this to the code:&lt;br /&gt;&lt;strong&gt;&amp;lt;IMG SRC="http://www.google.com/images/logo.gif" WIDTH="180" HEIGHT="55"&amp;gt&lt;/strong&gt;&lt;br /&gt;And look at the output:&lt;br /&gt;&lt;IMG SRC="http://www.google.com/images/logo.gif" WIDTH="180" HEIGHT="55"&gt;&lt;br /&gt;&lt;br /&gt;Related Tip:&lt;br /&gt;&lt;a href="http://htmltips.blogspot.com/2004/05/making-image-link.html#comments"&gt;Making an Image a Link&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108483296770207120?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108483296770207120/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108483296770207120' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483296770207120'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483296770207120'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/resizing-images.html' title='Resizing Images'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-7019451.post-108483201534610367</id><published>2004-05-17T17:52:00.000-04:00</published><updated>2004-05-18T15:37:59.320-04:00</updated><title type='text'>The Nice Mailto Trick</title><content type='html'>If you ever want someone to e-mail you, than mailto is your answer!&lt;br /&gt;When you insert this command into your html code, a link will be created.&lt;br /&gt;Whoever clicks on this link will have their default mail client pop up!&lt;br /&gt;Look at this code: &lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="mailto:?"&amp;gt;Send me an email&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;This is how it looks to the viewer:&lt;br /&gt;&lt;A HREF="mailto:?"&gt;Send me an email&lt;/A&gt;&lt;br /&gt;We can also before the question mark, type in the address which the viewer is to send the e-mail to, and look at what happens.&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="mailto:nilsmolina@comcast.net?"&amp;gt;Send me an email&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;A HREF="mailto:nilsmolina@comcast.net?"&gt;Send me an e-mail&lt;/A&gt;&lt;br /&gt;We can also add something to the subject line, too.&lt;br /&gt;Look at what happens. We have added subject=This text is on the subject line&amp;&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="mailto:nilsmolina@comcast.net?subject=This text is on the subject line&amp;"&amp;gt;Send me an email&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;A HREF="mailto:nilsmolina@comcast.net?subject=This text is on the subject line&amp;"&gt;Send me an e-mail&lt;/A&gt;&lt;br /&gt;OK, finally, we can even add text in the actual e-mail!&lt;br /&gt;Look at what happens as we add body=This text is in the e-mail&lt;br /&gt;&lt;strong&gt;&amp;lt;A HREF="mailto:nilsmolina@comcast.net?subject=This text is on the subject line&amp;body=This text is in the e-mail"&amp;gt;Send me an email&amp;lt;/A&amp;gt;&lt;/strong&gt;&lt;br /&gt;&lt;A HREF="mailto:nilsmolina@comcast.net?subject=This text is on the subject line&amp;body=This text is in the e-mail"&gt;Send me an e-mail&lt;/A&gt;&lt;br /&gt;Wow, isn't that nice.&lt;br /&gt;Yes, it is the nice mailto trick.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/7019451-108483201534610367?l=htmltips.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://htmltips.blogspot.com/feeds/108483201534610367/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=7019451&amp;postID=108483201534610367' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483201534610367'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/7019451/posts/default/108483201534610367'/><link rel='alternate' type='text/html' href='http://htmltips.blogspot.com/2004/05/nice-mailto-trick.html' title='The Nice Mailto Trick'/><author><name>nilsmo</name><uri>http://www.blogger.com/profile/15384012546086234866</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>7</thr:total></entry></feed>
