-
Notifications
You must be signed in to change notification settings - Fork 4
/
homepage.html
60 lines (54 loc) · 2.01 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
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Bellefair|Playfair+Display" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<title>Civitas</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale= 1">
<style>
.states{
font-family: 'Playfair Display', serif;
font-size: 200%;
margin-top: 50px;
}
.senators{
font-family: 'Playfair Display', serif;
font-size: 125%;
margin-top: 15px;
width: 200px;
height: 275px;
}
.arg{
padding: 0px;
margin-top:0px;
margin-bottom:0px;
margin-right:0px;
margin-left:0px;
}
</style>
</head>
<body>
<nav class="navbar navbar-default" style="background-color: #9D8FE3;margin-bottom:0px;">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#" style="font-family: 'Bellefair', serif; font-size: 300%;">Civitas</a>
</div>
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
<li><a href="#">Map of Representatives</a></li>
<li><a href="#">Register to Vote</a></li>
<li><a href="#">Our Mission</a></li>
</ul>
</div>
</nav>
<div class="container-fluid " style="padding: 0px;">
<div class="row" align="center">
<!-- <div class="arg" align="center"> -->
<img src="hope.jpg">
</div>
</div>
</div>
</body>
</html>