This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
about.html
85 lines (77 loc) · 3.4 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Election Guide | About</title>
<meta charset="utf-8">
<meta name="author" content="j7502">
<meta name="description" content="A guide to Missouri's federal elections">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="assets/font-awesome/css/font-awesome.min.css"> <!-- Font Awesome -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css"> <!-- Bootstrap -->
<link rel="stylesheet" href="assets/css/application.css"> <!-- Main CSS -->
</head>
<body>
<div class="container">
<header>
<div class="row">
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-7 menu-dropdown">
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Menu</a>
<ul>
<li><a href="presidential/candidates.html">President</a></li>
<li><a href="senate/candidates.html">Senate</a></li>
<li><a href="house/candidates.html">House</a></li>
</ul>
</li>
</ul>
</nav>
</div>
<div class="col-lg-4 col-md-4 col-sm-4 col-xs-0 type">
<h1 class="page-subheader">About</h1>
</div>
<div class="col-lg-4 col-md-3 col-sm-4 col-xs-5 logo">
<a href="http://www.columbiamissourian.com">
<img src="assets/img/Missourian.png" class="img-responsive" alt="Columbia Missouian logo"/></a>
</div>
</div>
<hr>
</header>
<h2>What Is This?</h2>
<p>This is an explanatory of this whole project. Add here all the basic data that a new reader might want to know: when is the election, who is being elected and by whom, how exactly it works, how you register to vote and whatnot.</p>
<h2>How Many Questions Can I Include?</h2>
<p>As many as you would like!</p>
<h2>Can I Add an Image?</h2>
<p>This page is supposed to be pretty technical and clear cut, but if you say so, master...</p>
<p><img src="https://meduza.io/image/attachments/images/000/017/583/small/QJrLwtoSjy-x0kGszsm2pQ.gif" class="img-responsive" alt="Just a gif" /></p>
<footer>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<div class="contact-info">
<h3>Contact Information</h3>
<div class="contacts">
<div><a href="http://www.columbiamissourian.com/" class="footer-link">columbiamissourian.com</a></div>
<div>221 South 8th Street</div>
<div>Columbia, MO 65201</div>
<div>Phone: 573-882-5714</div>
<div>Email: news@columbiamissourian.com</div>
</div>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6">
<h3>Follow Us</h3>
<p><a href="https://www.facebook.com/ColumbiaMissourian"><span class="fa fa-facebook"></span></a>
<a href="https://twitter.com/comissourian"><span class="fa fa-twitter"></span></a>
<a href="https://www.youtube.com/user/ColumbiaMissourian"><span class="fa fa-youtube"></span></a>
<a href="http://instagram.com/comissourian"><span class="fa fa-instagram"></span></a>
<a href="https://www.vimeo.com/ColumbiaMissourian"><span class="fa fa-vimeo-square"></span></a>
</p>
</div>
</div>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</body>
</html>