-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHomepage.html
186 lines (169 loc) · 4.42 KB
/
Homepage.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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html lang="en-US">
<head>
<style type="text/css">
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.css);
h1.title {
text-align: center;
font-family: 'Brush Script MT', sans-serif;
background-color: #ffbb33;
font-size: 80px;
font-weight: bold;
letter-spacing: -1px;
line-height: 1;
padding: 10px 0px;
}
#nav {
width: 100%;
float: left;
margin: 0 0 1em 0;
padding: 0;
font-family: "Arial Black";
}
#nav ul {
list-style: none;
width: 800px;
margin: 0 auto;
padding: 0;
}
#nav li {
float: left;
}
#nav li a {
display: block;
padding: 16px 40px;
text-decoration: none;
font-weight: bold;
background-color: black;
border-right: 1px solid #ccc;
color: white;
}
#nav li:first-child a {
border-left: 1px solid #ccc;
}
#nav li a:hover {
background-color: red;
}
img {
width: 100%;
height: 100%;
padding-top: 30px;
}
#content {
width: 31%;
float: left;
padding: 0px;
font-family: 'Brush Script MT';
font-size: 30px;
text-align: center;
}
#middle {
width: 31%;
float: left;
padding: 5px 15px;
margin: 0px 5px 5px 5px;
font-size: 20px;
}
#sidebar {
width: 31%;
padding: 5px 15px;
float: left;
font-size: 20px;
}
.footer-social-icons {
width: 100%;
display: auto;
text-align: center;
}
.social-icon {
color: #fff;
}
ul.social-icons {
margin-top: 10px;
}
.social-icons li {
vertical-align: top;
display: inline;
height: 100px;
}
.social-icons a {
color: #fff;
text-decoration: none;
}
.fa-facebook {
padding:10px 14px;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition: .5s;
background-color: #322f30;
}
.fa-facebook:hover {
background-color: #3d5b99;
}
.fa-twitter {
padding:10px 12px;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition: .5s;
background-color: #322f30;
}
.fa-twitter:hover {
background-color: #00aced;
}
.fa-youtube {
padding:10px 14px;
-o-transition:.5s;
-ms-transition:.5s;
-moz-transition:.5s;
-webkit-transition:.5s;
transition: .5s;
background-color: #322f30;
}
.fa-youtube:hover {
background-color: #e64a41;
}
</style>
</head>
<body>
<!--Title -->
<h1 class = "title"> Excelsior Scholarship </h1>
<!--Navigation Bar -->
<div id="nav">
<ul>
<li><a href="theproblem.html"> the problem </a></li>
<li><a href="howtoapply.html"> how to apply </a></li>
<li><a href="howitworks.html"> how it works </a></li>
<li><a href="#"> other resources </a></li>
</ul>
</div>
<!-- Image -->
<img src = "cuomopic.jpg">
<!-- Break --> <hr>
<!-- Introduction -->
<div id = "information">
<section id="content">
<h2> The Excelsior Scholarship Campaign: Making College Possible </h2>
</section>
<section id="middle"> <br /> <br />
<p> New York’s tuition-free degree program, the Excelsior Scholarship, is the first of its kind in the nation and will help alleviate the crushing burden of student debt while making college possible for hundreds of thousands of students across the state. </p>
</section>
<aside id="sidebar"> <br /> <br />
<p> As a college education is increasingly necessary to secure the jobs of tomorrow, the Excelsior Scholarship will ensure New York’s students have access to a quality education and the skills they need to succeed. </p>
</aside>
</div>
<br /><br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <hr />
<!--Footer -->
<div class="footer-social-icons">
<ul class="social-icons">
<li><a href="https://www.facebook.com/andrewcuomo/" class="social-icon"> <i class="fa fa-facebook"></i></a></li>
<li><a href="https://twitter.com/NYGovCuomo?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor"
class="social-icon"> <i class="fa fa-twitter"></i></a></li>
<li><a href="https://www.youtube.com/user/nygovcuomo" class="social-icon"> <i class="fa fa-youtube"></i></a></li>
</ul>
</div>
</body>
</html>