-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathranking.html
More file actions
120 lines (116 loc) · 5.65 KB
/
ranking.html
File metadata and controls
120 lines (116 loc) · 5.65 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Ranking</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div>
<nav class="navbar navbar-expand-md navbar-light bg-light fixed-top py-2">
<div class="container">
<a href="" class="navbar-brand lead"> Hackatones
<img src="img/logo.jpg" width="60" alt="">
</a>
<button class="navbar-toggler" data-toggle="collapse" data-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a href="index.html" class="nav-link">Página principal</a>
</li>
</ul>
<ul class="navbar-nav ml-auto px-2">
<li class="nav-item">
<a href="login.html" class="nav-link" data-toggle="modal" data-target="#addPostModal"><i class="fas fa-user"></i> login</a>
</li>
</ul>
</div>
</div>
</nav>
</div>
<div class="container">
<div class="ranking">
<table class="table">
<thead class="thead-dark">
<tr>
<th scope="col">#</th>
<th scope="col">Nombre</th>
<th scope="col">Apellidos</th>
<th scope="col">Puntuación</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>37</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>34</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>30</td>
</tr>
<tr>
<th scope="row">4</th>
<td>Michael</td>
<td>Juckson</td>
<td>26</td>
</tr>
<tr>
<th scope="row">5</th>
<td>Willy</td>
<td>Rex</td>
<td>23</td>
</tr>
<tr>
<th scope="row">6</th>
<td>Jack</td>
<td>Daniels</td>
<td>20</td>
</tr>
<tr>
<th scope="row">7</th>
<td>Rosa</td>
<td>Melano</td>
<td>18</td>
</tr>
<tr>
<th scope="row">8</th>
<td>Angus</td>
<td>Young</td>
<td>15</td>
</tr>
<tr>
<th scope="row">9</th>
<td>Oscar</td>
<td>Cañellas</td>
<td>13</td>
</tr>
<tr>
<th scope="row">10</th>
<td>Winston</td>
<td>Smith</td>
<td>10</td>
</tr>
</tbody>
</table>
</div>
</div>
<script src="js/jquery/jquery-3.3.1.min.js"></script>
<script src="js/popper.js/popper.min.js"></script>
<script src="js/bootstrap/bootstrap.bundle.js"></script>
<script src="js/app-bundle.js"></script>
</body>
</html>