-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscholarships.html
More file actions
136 lines (120 loc) · 3.99 KB
/
scholarships.html
File metadata and controls
136 lines (120 loc) · 3.99 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
<!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">
</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 -->
<div class ="row">
<div class = "large-12 columns">
<h4 style="color:#0094FF"><b> Available Scholarships</b> </h4>
<div class = "panel">
<div class = "row">
<div class = "large-6 columns">
<h4> Tarver Scholarship </h4>
<p> [Full Tuition / Deadline March 20th] </p>
</div>
<div class = "large-3 columns">
<a href="mentors.html" class="radius button right orange" title = "(Premium Feature)">Request Mentor</a>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button ">Apply Now</a>
</div>
</div>
</div>
<div class = "panel">
<div class = "row">
<div class = "large-6 columns">
<h4> Entrepreneurship Grant </h4>
<p> [$20,000 / Deadline May 15th] </p>
</div>
<div class = "large-3 columns">
<a href="mentors_2.html" class="radius button right orange" title = "(Premium Feature)">Request Mentor</a>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button ">Apply Now</a>
</div>
</div>
</div>
<div class = "panel">
<div class = "row">
<div class = "large-6 columns">
<h4> Ethnic Minority Scholarship </h4>
<p> [$35,000 / Deadline July 31th] </p>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button right orange" title = "(Premium Feature)">Request Mentor</a>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button ">Apply Now</a>
</div>
</div>
</div>
<div class = "panel">
<div class = "row">
<div class = "large-6 columns">
<h4> Underwater Basket Weaving Fund </h4>
<p> [$15,000 / Deadline December 10th] </p>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button right orange" title = "(Premium Feature)">Request Mentor</a>
</div>
<div class = "large-3 columns">
<a href="#" class="radius button ">Apply Now</a>
</div>
</div>
</div>
</div>
</div>
<!-- Call to Action Panel -->
<!-- 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="Chart.js"></script>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/json2/20110223/json2.js"></script>
<script src="https://raw.github.com/andris9/jStorage/master/jstorage.js"></script>
<script> /* $.jStorage is now available */ </script>
<script>
$(document).foundation();
</script>
</body>
</html>