-
Notifications
You must be signed in to change notification settings - Fork 0
/
AusVote2019.html
116 lines (96 loc) · 4.92 KB
/
AusVote2019.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
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<title>AusVote2019</title>
<meta charset="UTF-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
</head>
<body>
<nav class="navbar navbar-default">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="#">AusVote2019</a>
</div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-user"></span> Sign Up</a></li>
<li><a href="#"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</nav>
<div class ='jumbrotron text-center'>
<h1>Your guide to the 2019 Australian Federal Election<br></h1>
</div>
<div class="container">
<div class="row">
<div class='col-sm-3'>
<h2>Federal Election is Announced</h2>
<p>The gloves are off! As always, the current Federal election is shaping into a battle of contrasts. AusVote2019 is
here to help you decide where your vote goes. With information on all the major parties and our vote tracker AusVote2019
is your one stop shop for this Federal election.</p>
</div>
<div class='col-sm-9'>
<h2>Major Party Details</h2>
<table class='table table-hover'>
<thead>
<tr>
<th>Party</th>
<th>Leader</th>
<th>Website</th>
</tr>
</thead>
<tbody>
<tr>
<td>Liberal Party</td>
<td>Scott Morrison</td>
<td><a href="https://www.liberal.org.au/">Website</a></td>
</tr>
<tr>
<td>Labor Party</td>
<td>Bill Shorten</td>
<td><a href="https://www.alp.org.au/">Website</a></td>
</tr>
<tr>
<td>Greens Party</td>
<td>Richard Di Natale</td>
<td><a href="https://greens.org.au/">Website</a></td>
</tr>
<tr>
<td>United Australia Party</td>
<td>Clive Palmer</td>
<td><a href="https://www.unitedaustraliaparty.org.au">Website</a></td>
</tr>
<tr>
<td>Pauline Hansons One Nation</td>
<td>Pauline Hanson</td>
<td><a href="https://www.onenation.org.au/">Website</a></td>
</tr>
</tbody>
</table>
</div>
<div class="footer">
<button onclick="modified()">Last Modified</button>
<p id="demo"></p>
<script>
function modified() {
var x = new Date(document.lastModified);
document.getElementById("demo").innerHTML = x;
}
</script>
<button onclick="time()">Time</button>
<p id="f"></p>
<script>
function time(){
var y = new Date();
document.getElementById('f').innerHTML= y;
}
</script>
</div>
</div>
</div>
</body>
</html>