Structure of an HTML Documen code example
Example: html basic structure
<!DOCTYPE html>
<html>
<head>
<title>Some Title</title>
<link href="css_file.css" rel="stylesheet"> <!-- external CSS -->
</head>
<body>
<!-- main content -->
</body>
</html>