-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathresults.html
72 lines (71 loc) · 4.27 KB
/
results.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
<html>
<head>
<meta charset="utf-8">
<title>Vote.com | Results</title>
<!--Style Sheet & icon-->
<link rel="shortcut icon" type="image/png" href="images/vote-icon.png">
<link rel="stylesheet" href="css/s3.css">
<!--Bootstrap-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<!--Jquery-->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<!--Logos/Vectors-->
<script src="https://kit.fontawesome.com/ccbdc28270.js" crossorigin="anonymous"></script>
</head>
<body>
<section id="top">
<div class="container-fluid">
<nav class="navbar navbar-expand-lg navbar-dark" style="padding-top:30px;">
<a class="navbar-brand" style="font-family:'Yeon Sung';font-size:35px;padding-left:5%;" href="#">
<i class="fas fa-vote-yea"></i></i> Vote.com | Results
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo01" aria-controls="navbarTogglerDemo01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo01">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Return to Home <i class="fas fa-home"></i></a></li>
</ul>
</div>
</nav>
</div>
<div class="container main-Results">
<h1 style="text-align: left; padding-bottom:10px;" class="poll-name-res">Poll name</h1>
<table class="styled-table">
<thead>
<tr>
<th>Candidates</th>
<th>Votes</th>
</tr>
</thead>
<tr>
<td><h2 class="cand-v c1-nme">Candidate-1:</h2></td>
<td><h3 class="c1-votes">0 votes</h3></td>
</tr>
<tr>
<td class="active-row"><h2 class="cand-v c2-nme">Candidate-2:</h2></td>
<td><h3 class="c2-votes">0 votes</h3></td>
</tr>
<tr>
<td><h2 class="cand-v c3-nme">Candidate-3:</h2></td>
<td><h3 class="c3-votes">0 votes</h3></td>
</tr>
</table>
<h2 style="text-align: right;">Result Graph</h2>
</div>
</section>
<section id="footer">
<a class="link-icon" href="https://www.facebook.com/andrew.georgeissac"><i class="fab fa-facebook"></i></a>
<a class="link-icon ist-icon" href="https://www.instagram.com/_andrewissac/"><i class="fab fa-instagram"></i></a>
<a class="link-icon" href="https://github.com/andrew-geeks"><i class="fab fa-github"></i></a>
<a class="link-icon" href="https://twitter.com/andrewgeorge002"><i class="fab fa-twitter"></i></a>
<br>
<em>Created by Andrew George Issac</em><br>
<p style="padding-top: 10px;">© copyright 2021 <i class="fas fa-vote-yea"></i>vote.com</p>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>