HTML is a simple language that uses TAGs to tell browsers how text should be formatted.
Capitalization does not matter in HTML
White space does not matter in HTML
Doctype Declaration used to be more important than it is now
test.html
<!doctype html>
<html>
<head>
<title>Test Web Page</title>
</head>
<body>
<H1>Hello World!!!</h1>
<H2>This is an H2 Tag</h2>
<p>This is a test web page...</p>
</body>
</html>
example.html
<h1>Hello World!!!</h1>
<p>foot loose and fancy free!!!</p>
Be the first to comment