HTML Cheat Sheet
HTML Cheat Sheet
Webpage Structure
All Web Pages will have the following structure.
<html>
<head>
<title> Page Title (Browser Tab)
</title>
</head>
<body>
Page Content, goes in Body
</body>
</html>