This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
temp_ranking.html
79 lines (74 loc) · 2.29 KB
/
temp_ranking.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="bootstrap/css/bootstrap.css" />
<link rel="stylesheet" href="css/ranking.css" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<script src="bootstrap/js/bootstrap.js"></script>
<script src="https://kit.fontawesome.com/3d65243769.js" crossorigin="anonymous"></script>
<title>Ranking</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-4">
<center>
<h2>Top Students</h2>
</center>
<table class="table align-middle mb-0 bg-white">
<br />
<thead class="bg-light">
<tr>
<th>Rank</th>
<th>Name</th>
<th>Role</th>
<th>University</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<i class="fa-solid fa-medal fa-xl" style="color: #ffd700"></i>
</td>
<td>
<div class="d-flex align-items-center">
<img src="https://mdbootstrap.com/img/new/avatars/8.jpg" alt="" style="width: 45px; height: 45px"
class="rounded-circle" />
<div class="ms-3">
<p class="fw-bold mb-1">John Doe</p>
<p class="text-muted mb-0">[email protected]</p>
</div>
</div>
</td>
<td>
<p class="fw-normal mb-1">Software engineer</p>
<p class="text-muted mb-0">IT department</p>
</td>
<td>
<span class="badge badge-success rounded-pill d-inline">
Rank
</span>
</td>
</tr>
</tbody>
</table>
<br />
</div>
<div class="col-md-4">
<center>
<h2>Top Universities</h2>
</center>
<table class="table align-middle mb-0 bg-white"></table>
</div>
<div class="col-md-4">
<center>
<h2>Top Projects</h2>
</center>
<table class="table align-middle mb-0 bg-white"></table>
</div>
</div>
</div>
</body>
</html>