-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
40 lines (40 loc) · 1.11 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="MatNav.css" rel="stylesheet">
<style>
html, body{padding: 0px;margin: 0px;width: 100%;height: 100%;font-family: Arial;}
</style>
</head>
<body>
<nav class="MatNav">
<div class="MatNav-Container">
<a class="MatNav-Item-Container" href="#D">
<i class="material-icons MatNav-Icon">home</i>
<p class="MatNav-Label">Home</p>
</a>
<a class="MatNav-Item-Container" href="#A">
<i class="material-icons MatNav-Icon">search</i>
<p class="MatNav-Label">Search</p>
</a>
<a class="MatNav-Item-Container" href="#N">
<i class="material-icons MatNav-Icon">explore</i>
<p class="MatNav-Label">Discover</p>
</a>
<a class="MatNav-Item-Container" href="#K">
<i class="material-icons MatNav-Icon">more_vert</i>
<p class=" MatNav-Label">More</p>
</a>
</div>
</nav>
<main>
<footer>
© Created by SimplyCodin
</footer>
</main>
</body>
</html>