-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 1.61 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>
<head>
<title property="name">Material Web Framework Template</title>
<meta charset="UTF-8">
<meta name="theme-color" content="#03a9f4">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0">
<!-- Icons -->
<link rel="icon" href="/img/favicon.ico">
<!-- Styles -->
<!-- Fonts -->
<link href="http://fonts.googleapis.com/css?family=Roboto" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
<!-- Material Web -->
<link href="/css/global.css" rel="stylesheet" type="text/css">
<link href="/css/appbar.css" rel="stylesheet" type="text/css">
<link href="/css/card.css" rel="stylesheet" type="text/css">
<link href="/css/sidenav.css" rel="stylesheet" type="text/css">
<link href="/css/button.css" rel="stylesheet" type="text/css">
<link href="/css/fab.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="appbar">
<span id="appname">App Name</span>
<span class="tabs">
<span class="tab active">Tab</span>
<span class="tab">Tab</span>
<span class="tab">Tab</span>
</span>
<span class="actions">
<i class="material-icons" title="Action"></i>
</span>
</div>
<div id="waterfall"></div>
<div class="main">
<!-- Content -->
<div class="card"></div>
</div>
<div class="fab"><i class="material-icons"></i></div>
<!-- Scripts -->
<script type="text/javascript" src="/js/global.js"></script>
<script type="text/javascript" src="/js/appbar.js"></script>
<script type="text/javascript" src="/js/sidenav.js"></script>
</body>
</html>