simple html structure code example
Example 1: structure of an html document
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>A website</title>
</head>
<body>
...
</body>
</html>
Example 2: html basic structure
<!DOCTYPE html>
<head>
<!-- Miscellaneous Stuff Here -->
</head>
<body>
<!-- Main Divs here -->
</body>