HTML Documents
You will notice that all tags have an opening tag <HTML> and a closing tag </HTML>.
The basic skeleton of an HTML document consists of the following.
<!DOCTYPE html> {TELLS THE HTML VERSION}
<html>
<html>
<head> {consists of the meta data, Links, title and more}
<title> {this will put the text here in the title of the WEB PAGE} </title>
</head>
<body> {THE VISIBLE PART}
What ever is here will be displayed in the web page
</body>
</html>
You will notice that all tags have an opening tag
<HTML> and a closing tag </HTML>
0 comments: