How To Make A Web Page

April 17, 2008 by Cherise

Making a web page is very easy. Open up notepad and type a few lines. Go to “save as” and save it as index.html. Index is always used for the home page a web site. The .html part will let the browser know to read is as a web page..

.htm can also be used its really the same as html.

This is your base for a web page

<head>
<title>Your name</title>

Stylesheet

</head>

<body>

information, pictures, etc here

</body>
.php should be used when using php files.

Making a web page is easy its the coding part that’ll get you. Don’t worry though you’ll get it!