Skip to: site menu | section menu | main content

UTOOB

Do It Yourself..
Currently viewing: UTOOB » Making A Page

Google

Making A Simple Page In HTML

first open up notepad. Then type

<HTML><HEAD></HEAD><BODY></BODY></HTML> without the quotes. Now all of your content on this webpage will be put between the BODY tags. so for example:

<HTML> <HEAD> </HEAD> <BODY> This is my first webpage. </BODY> </HTML>

What you now need to do is go to File-->Save As and where it says file name lets make it index.html then click save. Now where ever you saved that file you can find it is now a webpage instead of a notepad file. You can double click on it and it will open up in your default browser. if you want to edit and the change content between the body tags, while it is open in the browser, at the menu go to View-->Source. It will open up your html in notepad. Go ahead and make your necessary changes than you can save it with the same file name as the original to overwrite the old one. It is always good practice to keep a recent copy of your work in case something goes wrong. You Now have a webpage to work with.

Back to top