Simple template for a web page.
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
margin: 40px;
background: aliceblue;
}
#greeting {
font-family: "Helvetica Neue", sans-serif;
font-weight: 100;
font-size: 120px;
color: steelblue;
}
</style>
<body>
<div id="greeting"></div>
<script>
greeting.textContent = "Hello, world!";
</script>