forked from MeetVys/El
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventPage.html
102 lines (80 loc) · 3.28 KB
/
eventPage.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous">
<title>Live-Esummit</title>
</head>
<body>
<nav class="navbar navbar-light bg-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="img/esummitlogo.png">
ESUMMIT 2021
</a>
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link " aria-current="page" href="#">Login</a>
</li>
</ul>
</div>
</nav>
<br>
<br>
<hr>
<div class="container">
<table class="table">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Speaker</th>
<th scope="col">Join/Register</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Speaker name</td>
<td>Button to be added <button type="button" class="btn btn-dark " href="https://getbootstrap.com/docs/5.0/components/buttons/">Join</button> <button type="button" href="#" class="btn btn-dark">Register</button></td>
<td>Guy's instagram or something</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Speaker name</td>
<td>Button to be added <button type="button" class="btn btn-dark">Join</button> <button type="button" class="btn btn-dark">Register</button></td>
<td>Guy's instagram or something</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Speaker name</td>
<td>Button to be added <button type="button" class="btn btn-dark">Join</button> <button type="button" class="btn btn-dark">Register</button></td>
<td>Guy's instagram or something</td>
</tr>
<tr>
<th scope="row">1</th>
<td>Speaker name</td>
<td>Button to be added <button type="button" class="btn btn-dark">Join</button> <button type="button" class="btn btn-dark">Register</button></td>
<td>Guy's instagram or something</td>
</tr>
</tbody>
</table>
</div>
<br>
<br>
<br>
<section id="footer">
<p>Footer to be Added</p>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW"
crossorigin="anonymous"></script>
</body>
</html>