To create your web page, you need:
A text editor is a program that edits plain text files. When authoring HTML, do not use Word, Wordpad, Pages, or any other program that does not save files as plain text.
Copy-and-paste the text below into your text editor, starting with the text, "<html>"
<html> <head> <title>A Simple Webpage</title> </head> <body> This is a simple webpage. </body> </html>
The words that are surrounded with angle brackets (< >
) are called elements. We will talk about what a element is soon, but first let’s finish creating and displaying your webpage.
Once you have copied the text over to your text editor, change name at bottom right to simple.html
. Then press SAVE. This should download the html file to your computer
Open the file simple.html
double-clicking. If it doesn't open in a browser, try right-clicking or ctrl-clicking on the file and choosing Open With -- then select browser of your choice (ex. Chrome, Safari, Firefox, etc)