-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (24 loc) · 851 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!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>Document</title>
<script src="fader.js"></script>
<link rel="stylesheet" href="styles.css">
<!-- SAFARI <script src="https://polyfill.io/v2/polyfill.min.js?features=IntersectionObserver"></script> -->
<script type="module" src="scripts.js"></script>
<!-- TODO try with hover prefetch
<script src="//instant.page/1.1.0" type="module" integrity="sha384-EwBObn5QAxP8f09iemwAJljc+sU+eUXeL9vSBw1eNmVarwhKk2F9vBEpaN9rsrtp"></script>
-->
</head>
<body>
<h1>Hello World</h1>
<main>
<nav>
<a href="another.html">Go to another dimension</a>
</nav>
</main>
</body>
</html>