Starting Out
This is what you're average blank HTML page looks like.
<html>
<head>
<title>My HTML document!</title>
</head>
<body>
</body>
</html>
Usually you put any kind of javascripts in your <HEAD> </HEAD> tags!
The <TITLE></TITLE> tags are obvious; just put the page title there.
In between the <BODY> </BODY> tags put the page content there.
|
|