forked from chelciebritt/Kuva-Front-End
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
executable file
·62 lines (43 loc) · 1.75 KB
/
about.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
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>KUVA</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection" />
<link href="https://fonts.googleapis.com/css?family=Lato" rel="stylesheet">
</head>
<body>
<header>
<nav class="grey darken-4" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo grey-text text-darken-1"></a>
<ul class="right hide-on-med-and-down">
<li><a class="grey-text text-darken-1 waves-purple" href="dashboard.html">Login</a></li>
<li><a class="grey-text text-darken-1 waves-purple" href="">Create an account</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="dashboard.html">Login</a></li>
<li><a href="">Create an account</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
</header>
<footer class="page-footer grey darken-4">
<div class="footer-copyright center">
<div class="container">
Made by Global Turtle Hackers
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
<script src="js/app.js"></script>
</body>
</html>