-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu-bottom.html
52 lines (48 loc) · 4.11 KB
/
menu-bottom.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<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-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Thrive">
<link rel="icon" href="images/icon.ico" type="image/ico" sizes="16x16">
<link rel="icon" href="favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" type="image/png">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="css/menu-bottom.css" type="text/css">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
</head>
<body>
<h1>Mobile Fixed Bottom Nav</h1>
<h2>Bottom</h2>
<nav class="mobile-bottom-nav">
<div class="mobile-bottom-nav__item mobile-bottom-nav__item--active">
<div class="mobile-bottom-nav__item-content">
<i class="material-icons">home</i>
one
</div>
</div>
<div class="mobile-bottom-nav__item">
<div class="mobile-bottom-nav__item-content">
<i class="material-icons">mail</i>
two
</div>
</div>
<div class="mobile-bottom-nav__item">
<div class="mobile-bottom-nav__item-content">
<i class="material-icons">person</i>
three
</div>
</div>
<div class="mobile-bottom-nav__item">
<div class="mobile-bottom-nav__item-content">
<i class="material-icons">phone</i>
four
</div>
</div>
</nav>
</body>
</html>