Saturday, May 18, 2013

How To Make a Simple Html Web Page

0 comments
Hyper Text Markup Language (HTML) is the main markup language for creating web pages and other information that can be displayed in a web browser.Now you can also make or create these webpages with the help of this simple code given below.

Simple Html Webpage Code :
<! DOCTYPE html>
<html>
<head>
<title>
How To 99
</title>
</head>
<body>
Anything that you write in body section will display on the browser window
</body>
</html>
In the above code,
  • The DOCTYPE declaration defines the document type.
  • The text between <html> and </html> describes the web page.
  • The text between <title> and </title> is the title of your page.
  • The text between <body> and </body> will display on your web-browser window.

Leave a Reply

 
How To 99 © 2013 How to 99 &

How to Tutorial in 99 Categories