This is a Premium Blog

Basic HTML

Written on June 5, 2007 by admin

Let's we learn about basic of HTML. How to create page, make hyperlink, etc.

Head tags

Head tags are commonly used for titles. The size of the words depend on the tag you use. Here are examples:

HTML:
  1. <h1>Blah</h1>
  2. <h2>Blah</h2>
  3. <h3>Blah</h3>
  4. <h4>Blah</h4>
  5. <h5>Blah</h5>
  6. <h6>Blah</h6>

The results will be(in order):

Blah
Blah
Blah
Blah
Blah
Blah

Text Effects

You might wanna add some text effects on your page so here are some tags you can use:

Bold ---> Bold

Italic ---> Italic

Underline ---> Underline

Links

A webpage isn't a webpage without links right? So here are tags in adding links to your site:

HTML:
  1. <a href="http://www.lirikkita.com">Indonesia Lyrics Collection</a>

Turn into this text link:

Indonesia Lyrics Collection

When you want image links instead of text you'll just have to change it into:

HTML:
  1. <a href="http://www.lirikkita.com"><img src="imageurl" /></a>

If you enjoyed this post Subscribe to our feed

Leave a Reply