Saturday, January 11, 2014

HTML First HELLO WORLD Page

HTML is a Markup Language used to develop static page on the web.It's very simple and Easy Markup Language.To Develop a simple HTML page you require a text editor and a web browser to run and display a Web Page.

HTML Text Editor:

  • NotePad (Notepad++)
  • Microsoft FrontPage
  • Adobe Dream Weaver


HTML Support All Web Browser.



First HTML Sample Page 
Code:
<html>
<head>
<title> HELLO WORLD </title>
</head>
<body>
<h1 align="center"><font color="blue" >HELLO WORLD </font></h1>
</body>
</html>

Write that upper code into notepad or dream weaver software and save this with .html or .html extension.
paste your page path on the web browser e.g C:/Users/Desktop/ComputerInformationTechnology.html and see your first hello world page on the WEB.

HTML is used to define the Structure of the Web Page.It's most usually used markup language on the Web.

No comments:

Post a Comment