block by joyrexus 93492984dd1032ae0805

HTML template

Full Screen

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>

index.html