-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
25 lines (23 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NetMonster</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined|Material+Icons" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css" rel="stylesheet">
<link href="elm-mdc/material-components-web.css" rel="stylesheet">
<link href="styles/main.css" rel="stylesheet">
<link rel="icon" type="image/png" href="media/favicon.png">
</head>
<body class="mdc-typography">
<script src="elm-mdc/elm-mdc.js"></script>
<script src="app.js"></script>
<div id="elm"/>
<script type="text/javascript">
Elm.Main.init({node: document.getElementById('elm')});
</script>
</div>
</body>