Search This Blog

Loading...

Tuesday, August 4, 2009

What can you do with html ?


HTML is very important language used in any web site.
  • With html you can create your won web site.
  • HTML is very easy to learn , you will enjoy it in our blog.
  • this is a full tutorial, ...that teaches you every thing about HTML code.
Examples in each chapter.
  • this HTML Tutorial contains more than 300 html examples.
  • following us daily and you will come professional in this HTML TRAINING
EXAMPLE - my first code in HTML.

<html>
<head>
<title>put here the name of page</title>

</head>
<body>
<h1>my frist heading</h1>
<p>my frist paragraph</p>
</body>
</html>

  • any page of web site contains <html> "meaning the start of page", </html>"meaning the end of the page"
  • <head> and </head> contains any information about the site and we learn it in the next lesson.
  • <body> meaning the body of page.
  • <p>we us it, when we want to write some paragraph.</p>
  • <h1> and this used when we want to write some title for article</h1>