-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable.html
More file actions
76 lines (72 loc) · 2.89 KB
/
table.html
File metadata and controls
76 lines (72 loc) · 2.89 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
<!DOCTYPE html>
<html>
<head>
<title>Example of a Table</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous" />
<link rel="stylesheet" href="css/styles.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" />
</head>
<body class="bg-light">
<nav class="navbar min-vw-100 sticky-top navbar-dark">
<div class="container-fluid justify-content-start">
<div class="justify-content-center" id="navbarSupportedContent">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link back-button" aria-current="page" href="index.html">
<i class="bi bi-arrow-left"></i>
Back
</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container text-center">
<h3 class="pt-4 pb-1">My Courses For Spring 2022</h3>
<table class="table table-striped table-bordered">
<thead class="thead-dark">
<tr class="table-dark">
<th scope="col">Course</th>
<th scope="col">Full Name</th>
<th scope="col">Credits</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">CDA 4210</th>
<td>Introduction to VLSI</td>
<td>3</td>
</tr>
<tr>
<th scope="row">CNT 4104</th>
<td>Intro to Data Communications</td>
<td>3</td>
</tr>
<tr>
<th scope="row">COP 3813</th>
<td>Intro to Internet Computing</td>
<td>3</td>
</tr>
<tr>
<th scope="row">EGN 4950C</th>
<td>Engineering Design 1</td>
<td>3</td>
</tr>
<thead>
<tr class="table-info">
<td colspan="2"></td>
<th scope="row">Total: 12</th>
</tr>
</thead>
</tbody>
</table>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
</body>
</html>