Starter skeleton
Here is a simple starter HTML skeleton you can copy and paste. It presumes you have a CSS stylesheet called "style.css" at the same path. A few meta
tags are included as well.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Your title here</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
Your body here.
<script src="script.js"></script>
</body>
</html>