-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (49 loc) · 1.81 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<html lang="en">
<head>
<!-- if we want some polyfills dynamically, eg:
<script src="https://polyfill.archive.org/v3/polyfill.min.js?features=fetch%2CIntersectionObserver%2CglobalThis%2CElement.prototype.getAttributeNames"></script>
-->
<!-- Modules are always nonblocking, and they load after regular scripts, so we can put them first -->
<script type="module" src="/js/router.js"></script>
<style>
/* like bootstrap */
*, *:before, *:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
body {
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height: 1.428;
border: 0;
margin: 0;
padding: 0;
}
@font-face {
/* iconochive glyphs */
font-family: 'Iconochive-Regular';
src:url('https://archive.org/includes/fonts/Iconochive-Regular.eot?-ccsheb');
src:url('https://archive.org/includes/fonts/Iconochive-Regular.eot?#iefix-ccsheb') format('embedded-opentype'),
url('https://archive.org/includes/fonts/Iconochive-Regular.woff?-ccsheb') format('woff'),
url('https://archive.org/includes/fonts/Iconochive-Regular.ttf?-ccsheb') format('truetype'),
url('https://archive.org/includes/fonts/Iconochive-Regular.svg?-ccsheb#Iconochive-Regular') format('svg');
font-weight: normal;
font-style: normal;
}
</style>
</head>
<body class="navia responsive">
<style> body, html { margin: 0; font-size: 10px; } </style>
<script type="module" src="https://esm.ext.archive.org/@internetarchive/[email protected]"></script>
<ia-topnav localLinks="false"></ia-topnav>
<div id="wrap">
<main id="maincontent">
<div id="outlet">
</div>
<div class="container-ia"></div>
</main>
</div>
</body>
</html>