-
Notifications
You must be signed in to change notification settings - Fork 17
/
index.html
69 lines (66 loc) · 2.3 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Star Trek Table</title>
<!-- Link to Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
#warning-message { display: none; }
body {
background:url("https://source.unsplash.com/fsH1KjbdjE8") no-repeat center center fixed;
background-size: cover;
width: 100%;
color: #fff;
}
.table {
background-color: #011c36;
border: 2px solid #0074D9;
color: #fff;
}
.table th, .table td {
border: 1px solid #005198;
}
.table thead th {
background-color: #004179;
}
.table-responsive {
overflow-x: auto;
}
</style>
</head>
<body>
<div class="container mt-4">
<h2 class="text-center">Hello there let's connect</h2>
<div class="table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>Name</th>
<th>LinkedIn</th>
<th>Year</th>
</tr>
</thead>
<tbody>
<tr>
<td>Nikka</td>
<td><a href="https://linkedin.com/in/nikxherrera/">nikxherrera</a></td>
<td>2266</td>
</tr>
<tr>
<td>Spock</td>
<td><a href="#">linkedin.com/in/spock</a></td>
<td>2266</td>
</tr>
<!-- Add more rows as needed -->
</tbody>
</table>
</div>
</div>
<!-- Bootstrap and jQuery scripts (make sure to include jQuery before Bootstrap) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.4/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>