HTML
The following code is a simple template for an HTML page. It defines the global structure, sets the page title, keywords and descriptions, and include a CSS stylesheet.
<html>
<head>
<title>Your Title</title>
<meta name="Description" content="Your Description" />
<meta name="Keywords" CONTENT="Keyword1, keyword2" />
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="styles.css" />
</head>
<body>
</body>
</html>