Categories: Web Design Tips

How Do I Create a Simple Web Page?

A web page is simple to create. Just open Notepad (comes with Windows and Mac), label your document at the top in HTML (HyperText Markup Language) <html>, next, add the head <head> tag to the page, close the head tag </head>, add a body tag <body> then your TEXT, and close the body tag </body>, and close the HTML </html>. Save the page with a name like mypage.html (be careful not to save it as mypage.html.txt) then click on the file and it will open in your browser with the text that you added to the body.

Example:

<html>
<head>
</head>
<body>
The Text on the web page goes here.
</body>
</html>