XHTML and CSS Tutorial - 2 - Creating our First Webpage

<!doctype html>  (Basic Layout) (This one is need for all the web page)

<html> (Basic tag for any website)
<head> (made up of two parts head and body)
<title>
This is the title sucker! (anything in between is going to be in the head of the web page)
</title> (we always need to embed one and another)
</head>

</html>

Comments