Wednesday, February 17, 2010

HTML BASIC

Hey Guys.. This article is continuation of ABOUT HTML
Okay, at The HTML basic Let's we learn some basic code about (html headings, paragraphs, links, and html images)

HTML Headings Code

HTML headings are defined with the <h1> to <h6> tags.

Example :
<h1>This is a heading</h1>

The result form those code is :

This is a heading


Heading have 6 type and more high the value, Basicly the text in the heading code is also more large.

HTML paragraphs
HTML paragraphs are defined with the <p> tag.

Example :
<p>This is a paragraph</p>
<p>This is another paragraph</p>

Those code will show 2 paragraph (This is a paragraph and This is another paragraph)
and if you wanna change line in a paragraph you can use code <br />

HTML links
HTML links are defined with the <a> tag.

Example :
<a href="http://ibookus.co.cc">This is a link</a>

The result from the code above is :
This is a link (you can try to click that)

Note: The link address is provided as an attribute.(You will learn about attributes in a later chapter of this tutorial)

HTML images
HTML images are defined with the <img> tag.

Example :
<img src="http://www.w3schools.com/html/w3schools.jpg" width="104" height="142" />

The Result :
Note: The name and the size of the image are provided as attributes.(You will learn about attributes in a later chapter of this tutorial)


Okay, That's all about HTML Basic Code... See You in HTML Element Topic.!!

0 komentar: