RaysWebClass.Com


Lesson 1:   HTML Document Syntax


  1. HTML: Do you want to know what it is?
    HTML stands for Hypertext Markup Language. HTML is based on the Standard Generalized Markup Language (SGML), a much larger document-processing system used by News Papers and Magazines. Quite simply, HTML is the language used to create Web Pages. HTML is pure text, it therefore can be written using Microsoft's Notepad (which we will do in here). In order for your HTML document opens in the Browser you will need to add the four letter extension .HTML to the end of your file name.
  2. HTML Syntax

  3. Structure of HTML


Web Page Design: Exercise 1

Open notepad and enter the following HTML code:
<html>
<head>
    <title>My First Web Page</title>
</head>
<body  text='blue'  bgcolor='white'>
    <h1>My First Web Page</h1>
</body>
</html>
Save it in the wwwroot folder on your computer as index.html.
Note: index.html is a special name, it is the Home Page name for any web sites.
Do not close notepad, just reduce it in case you have to go back to it to make edits.
Open the wwwroot folder and double click index.html
(It should look like the page displayed above.)