aboutsummaryrefslogtreecommitdiffhomepage
path: root/snippets/html_with_basic_head
blob: 219bae2c01d9243c467429f4537fff1219ef7349 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>My Website</title>

    <link rel="stylesheet" href="./style.css">
    <link rel="icon" href="./favicon.ico" type="image/x-icon">

    <script defer src="index.js"></script>
  </head>
  <body>
    <header></header>
    <main>
    <h1>foo</h1>
    </main>
  </body>
</html>