HTML
Design you web page by yourself
Creating Your First HTML Document
An HTML document contains two parts. First part is the head which contains information about the document that is not displayed on the screen. The second part is the body that contains everything that is displayed on the web browser.
The basic structure of any HTML page is:
<html>
<head>
Information not displayed on the web browser
</head>
<body>
Information displayed on the web browser
</body>
</html>
<html>...</html> tags enclose all page contents. The opening <html> tells the web browser that this document is written in HTML language. Inside are the <head>...</head> tags that contains all information about the document. <body>...</body> tags enclose all displayed contents.
Steps for creating your first HTML file.
.
1. Go to your favorite text editor (Notepad is the best).
2. Enter the following text
<html>
<head>
<title>My First Web Page</title>
</head>
<body>
<h1> My first web page</h1>
</p> This is my first web page its looks simple by I will learn to make more professional web pages as I read through this tutorial.</p>
</body>
</html>
3. Save the document as a file called "First.html"
4. Open the web browser (eg. Internet explorer)
5. Select Open File... from the File menu.
6. Use the dialog box to browse and open the file you created, "First.html"
You should now see " My First Web Page" in the title bar of the web browser and in the web page below, the one you wrote between the <p> and </p> tags..