-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.html
More file actions
83 lines (72 loc) · 2.44 KB
/
home.html
File metadata and controls
83 lines (72 loc) · 2.44 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE HTML>
<html class = "no-js" lang = "en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ScholSearch</title>
<link rel="shortcut icon" href="img/favicon.ico" >
<!-- If you are using CSS version, only link these 2 files, you may add app.css to use for your overrides if you like. -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/foundation.css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<script src="js/vendor/modernizr.js"></script>
</head>
<body>
<div class="row">
<div class="large-3 columns">
<h1><img src="img/logo_medium.png" /></h1>
</div>
<div class="large-9 columns">
<ul class="right button-group">
<li><a href="home.html" class="button">HOME</a></li>
<li><a href="scholarships.html" class="button">SCHOLARSHIPS</a></li>
<li><a href="profile.html" class="button">PROFILE</a></li>
<li><a href="login.html" class="button">LOG IN</a></li>
<li><a href="signup.html" class="button orange" >SIGN UP </a></li>
</ul>
</div>
</div>
<!-- End Header and Nav -->
<h1><img src="img/logo_gleam.png" /></h1>
<!-- Call to Action Panel -->
<div class="row">
<div class="large-12 columns">
<div class="panel">
<h4>Get in touch!</h4>
<div class="row">
<div class="large-9 columns">
<p>We'd love to hear from you, you attractive person you.</p>
</div>
<div class="large-3 columns">
<a href="#" class="radius button right">Contact Us</a>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="row">
<div class="large-12 columns">
<hr />
<div class="row">
<div class="large-6 columns">
<p>© Copyright no one at all. Go to town.</p>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a href="home.html">Home</a></li>
<li><a href="main.html">Record</a></li>
<li><a href="analyze.html">Analyze</a></li>
<li><a href="login.html">Login/Register</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script>
$(document).foundation();
</script>
</body>
</html>