-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 2.3 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
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Verifai | home</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Quicksand|Raleway" rel="stylesheet">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.6/js/materialize.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.7/angular.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/3.6.0/firebase.js"></script>
<script src="index.js" charset="utf-8"></script>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav>
<div class="nav-wrapper container">
<a href="#" class="brand-logo">Verifai</a>
<ul id="nav-mobile" class="right hide-on-med-and-down top-nav">
<li><a href="teacherlogin.html">Teacher</a></li>
<li><a href="studentlogin.html">Student</a></li>
</ul>
<ul class="side-nav" id="mobile-demo">
<li><a href="teacherlogin.html">Teacher</a></li>
<li><a href="studentlogin.html">Student</a></li>
</ul>
</div>
</nav>
<div class="body">
<div class="body valign-wrapper">
<div class="valign cont fillh">
<h1 class="title-text white-text">Verifai</h1>
<h4 class="subtitle-text white-text quicksand">Revolutionizing the classroom</h4>
<a href="#desc" class="button button-white centerize" id="dive">Explore</a>
</div>
</div>
</div>
<div class="description" id="desc">
<div class="row">
<div class="col s12 m6 l8 valign-wrapper desc">
<div class="container valign">
<h4>What is verifai?</h4>
<p>
Verify is a ....
</p>
</div>
</div>
<div class="col m6 l4 hide-on-small teacher-img">
</div>
</div>
</div>
</body>
</html>