-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (71 loc) · 3.13 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Pinyon+Script&display=swap" rel="stylesheet">
<title>We The People</title>
</head>
<body>
<video autoplay muted loop id="myVideo">
<source src="assets\videos\Washington DC Capitol.mp4" type="video/mp4">
</video>
<div class="mod" id="modal">
<div class="modal-header">
<div class="title">
<h4>No articles found for this Rep.</h4>
</div>
<button class="close-button">×</button>
</div>
<div class="modal-body">
<img id="bernie" src="assets/images/bernie-pic.jpg" alt="bernie-mittens" class="center">
</div>
</div>
<div id="overlay"></div>
<div class="container">
<div class="row">
<div class="col s12">
<h1 class="cursive front-page center">We The People</h1>
<h4 class="about center">A Non-Partisan Site to Find Congressional News</h4>
</div>
</div>
<div class="row">
<form class="col s12">
<div class="input-field">
<textarea id="state-input" class="materialize-textarea"></textarea>
<label for="textarea1">Enter Location for Representatives</label>
<button class="btn waves-effect waves-light black" type="submit" name="action" id="submit-state">
<i class="material-icons">search</i>
</button>
<button class="btn waves-effect waves-light grey darken-4" type="submit" name="action" id="history-state">
<i class="material-icons">history</i>
</button>
</div>
</form>
</div>
<div class="row">
<ul class="collection with-header col l3 z-depth-1">
<li class="collection-header">
<h5 class="cursive">Representatives</h5>
</li>
<li class="reps"></li>
</ul>
<div class="col l9 display-news"></div>
<div class="col l9 collection-header no-news card horizontal">
<div class="card-content">
<p>Select a Representative name to display latest news</p>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://apis.google.com/js/api.js"></script>
<script src="assets/JS/script.js"></script>