Sunday, January 29, 2012

creating a web page using html


creating a web page using html


This HTML Tutorial is about how to create your first Web page by coding HTML using a text editor (such as NotePad) and then viewing the document using your Web browser.
To begin a Web page you will open a simple text editor like Windows NotePad for the Windows operating system or SimpleText for the Macintosh. Once you have this simple text editor open to a new blank document you will begin your web document by typing a few items I shall discuss in a moment. When you reach the closing part of this file I will ask you to save it to a floppy disk with a filename of firstpage.html. 



<HTML>

</HTML>

The Head Section

<HTML>
<HEAD> 
<TITLE>My First Page</TITLE>
</HEAD> 


</HTML>

The Body Section

<HTML>
<HEAD>
<TITLE>My First Page</TITLE>
</HEAD>
<BODY>

</BODY>
</HTML>

Making A Title

<H1>My First Web Page</H1>

<HTML>
<HEAD>
<TITLE>My First Web Page</TITLE>
</HEAD>
<BODY>
<CENTER><H1>My First Web Page</H1></CENTER>


</BODY>
</HTML>

Making A Background Color