-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
25 lines (22 loc) · 885 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>モンド</title>
<link rel="shortcut icon" href="./assets/img/favicon.ico" type="image/x-icon">
<link href="./assets/font/OpenSans-Light.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
<link href="./assets/font/Inconsolata.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="./assets/font/EBGaramond12-Regular.css" type="text/css" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=EB+Garamond" rel="stylesheet">
<link href="./assets/font/icons.css" type="text/css" rel="stylesheet" />
</head>
<body>
<div id="root"></div>
<script>
require('./lib.js');
require('./dist/app.js');
</script>
</body>
</html>