-
Notifications
You must be signed in to change notification settings - Fork 2
/
page2_all.html
37 lines (35 loc) · 904 Bytes
/
page2_all.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>User Details</title>
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;">
<link rel = "stylesheet"
href = "./bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="mycss.css">
</head>
<body>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<h1>User Details</h1>
<table class="table-fill" id="some-table">
<thead>
<tr>
<th class="text-left">Name</th>
<th class="text-left">Handle</th>
<th class="text-left">No. of commits</th>
<th class="text-left">Repository</th>
</tr>
</thead>
<tbody class="table-hover">
</tbody>
</table>
<script src = "./fetch_all.js" ></script>
</body>
</html>