Basic html code (also called script)

The most basic website uses html, as do the most complex dynamic websites on the web today.

Now you have your index.html file saved, we are ready to lay the foundation of your website.

Without a lot of boring explanation, type this:

That is the foundation.

Save it
!! Boring stuff you may want to skip !!
<!DOCTYPE HTML> Tells the browser what’s coming at it. It’s an HTML doc, look out.

<html>   Your browser starts to read the html code here.

<head>   Opening head tag. Everything between the head tags is invisible to your visitor

<title> </title> Put the name of your site here.

</head>  Invisibility stops here.

<body>  Where you put all the good stuff your visitors will see.

</body>  The closing of the cool stuff.

</html>  Your browser stops reading the html code here.

Thing is, The Above Explanation, doesn’t make a lot of sense until you’re actually doing it.