-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (30 loc) · 898 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
27
28
29
30
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<title>VueChat</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900" rel="stylesheet">
<link rel="stylesheet" href="static/vendor/fontawesome/css/fontawesome-all.min.css">
<link rel="stylesheet" href="static/css/normalize.css" />
<style>
html {
margin: 0;
padding: 0;
font-size: 16px;
}
body {
margin: 0;
padding: 0;
font-family: 'Roboto', sans-serif;
font-size: 62.5%;
}
</style>
</head>
<body>
<div id="app"></div>
<!-- built files will be auto injected -->
</body>
</html>