Here are some basic HTML tags that show how a web page is created.
<html> <head> <title> This is what will display at the top of the browser </title> </head> <body bgcolor="white" text="blue"> <h1> This tag is bold and large type </h1>
<H2>This tag is smaller</h2> <P> This P tag tells it should be type that is smaller, like a paragraph. I end every tag with a closing tag.</P> </body>
</html>
1. All basic HTML tags require an a <HTML> opening tag and a closing tag </H1> (the "/" indicates this is a closing tag. 2. Right after the <HTML> tag should be a <head> tag. 3. Inside the 'head tag' you place your title tag <TITLE>(which will be seen at the top of a browser ) 4. After closing the <head>, the next section is the <body> In other words the body is inside the <html> and </html> but it's below the <head> ... </head> section.
Summary: <html> <head> <title>This is your home page</title> </head> <body> .... all the web page is here ... </body> </html>
Copy the text and paste it into notepad. Save it as "index.html on your desktop. Open your browser and go to
File
Open file
Choose your file named index.html and open.
|