-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresultsPage.html
106 lines (79 loc) · 1.61 KB
/
resultsPage.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
<!DOCTYPE html>
<html>
<head>
<style>
<!--honestly should just move these to an external css file...-->
body {
height: 100%;
background: white;
}
.info {
border:3px solid black;
padding: 10px;
}
.facts {
border:3px solid black;
text-align:center;
}
table {
background-color:white;
font-family: Helvetica;
margin: 5px;
margin: auto;
}
.heading {
color: black;
font-size: 50px;
font-family: Helvetica;
}
p {
font-family: Helvetica;
}
.flag {
float: right;
size: 1px;
}
</style>
<title>CandiDate</title>
</head>
<body>
<h1 class="heading">Welcome to Candidate</h1>
<img src="800px-Flag_of_the_United_States.png" alt="works" class="flag">
<div class="Instructions">
<p>
Here are the candidates who you best matched up with.
</p>
<div>
<table>
<tr class="issues">
<th class="info">Name</th>
<th class="info">State</th>
<th class="info">Party</th>
<th class="info">Score</th>
</tr>
<tr class="issues">
<td class="facts">Bob</td>
<td class="facts">MD</td>
<td class="facts">D</td>
<td class="facts">57</td>
<!-- sorry this is still hardcoded-->
</tr>
<tr class="issues">
<td class="facts">Joe</td>
<td class="facts">MI</td>
<td class="facts">R</td>
<td class="facts">55</td>
<!-- sorry this is still hardcoded-->
</tr>
<tr class="issues">
<td class="facts">Bill</td>
<td class="facts">NJ</td>
<td class="facts">D</td>
<td class="facts">35</td>
<!-- sorry this is still hardcoded-->
</tr>
</table>
<script>
</script>
</body>
</html>