-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsenate-data.html
More file actions
92 lines (92 loc) · 5.36 KB
/
senate-data.html
File metadata and controls
92 lines (92 loc) · 5.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/1.10.22/css/jquery.dataTables.css">
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="assets/img/favicon.ico" type="image/png"/>
<title id="title">TGIF - Congress 113, senate</title>
</head>
<body>
<header class="container px-3">
<div class="row d-flex justify-content-between align-items-center">
<div class="col">
<a class="logo" href="index.html"><img class="logo" src="assets/img/tgif_logo.png" alt=""></a>
</div>
<div class="col-auto email">
<a href="mailto:info@tgif.net"><img src="assets/img/email.png" alt=""></a>
<a href="mailto:info@tgif.net">info@tgif.net</a>
</div>
</div>
<nav class="navbar navbar-expand-lg navbar-light bg-light border border-dark">
<div class="container-fluid">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle active" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Congress 113</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="house-data.html">House</a></li>
<li><a class="dropdown-item" href="#">Senate</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Attendance</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="houseAttendanceStatistics.html">House</a></li>
<li><a class="dropdown-item" href="senateAttendanceStatistics.html">Senate</a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-bs-toggle="dropdown" aria-expanded="false">Party Loyalty</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<li><a class="dropdown-item" href="housePartyLoyalty.html">House</a></li>
<li><a class="dropdown-item" href="senatePartyLoyalty.html">Senate</a></li>
</ul>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section id="senatePage">
<div class="d-flex justify-content-between">
<div class="w-75 p-3">
<h2>Senators</h2>
<p>First convened in 1789, the composition and powers of the Senate are established in Article One of the U.S. Constitution. Each state is represented by two senators, regardless of population, who serve staggered six-year terms. The Senate has several exclusive powers not granted to the House, including consenting to treaties as a precondition to their ratification and consenting to or confirming appointments of Cabinet secretaries, federal judges, other federal executive officials, military officers, regulatory officials, ambassadors, and other federal uniformed officers, as well as trial of federal officials impeached by the House.</p>
</div>
<div class="w-25 p-3">
</div>
</div>
<table id="table" class="table table-striped text-center">
<thead>
<tr>
<th>Name</th>
<th>Party</th>
<th>State</th>
<th>Year in office</th>
<th>% Votes w/party</th>
</tr>
</thead>
<tbody id="contenidoTabla">
</tbody>
</table>
</section>
<footer class="py-3 m-3 d-flex justify-content-center text-center bg-light border border-dark">
<span>© 2016 TGIF | All Rights Reserved</span>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js" integrity="sha384-q2kxQ16AaE6UbzuKqyBE9/u/KzioAlnx2maXQHiDX9d4/zp8Ok3f+M7DPm+Ib6IU" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.min.js" integrity="sha384-pQQkAEnwaBkjpqZ8RU1fF1AKtTcHJwFl3pblpTlHXybJjHpMYo79HY3hIi4NKxyj" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script type="text/javascript" charset="utf8" src="https://cdn.datatables.net/1.10.22/js/jquery.dataTables.js"></script>
<script type="text/javascript" src="js/pro-congress-113-senate.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>