-
Notifications
You must be signed in to change notification settings - Fork 0
/
student2.html
80 lines (69 loc) · 1.97 KB
/
student2.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
<!DOCTYPE html>
<html lang="en">
<!-- head -->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>CSIS-390 Test Student</title>
<link rel="icon" href="inc/img/favicon.png?v=1.1">
<!-- CSS -->
<link rel="stylesheet" href="inc/css/styles.css">
<!-- Fonts -->
<link rel="stylesheet" href="inc/css/open-iconic-bootstrap.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900" >
</head>
<body>
<!-- navbar -->
<nav id="main-navbar" class="navbar fixed-top navbar-dark bg-dark">
<a class="navbar-brand" href="index.html">
<span class="oi oi-link-intact"></span>
<h1 class="navbar-title">CSIS-390</h1>
</a>
</nav>
<!-- main container -->
<div class="container">
<!-- heading2 -->
<h2 class="main-section">Test Student</h2>
<!-- card -->
<div class="card bg-light">
<div class="card-body">
<div class="card-text">
<table class="table">
<tr>
<th>Major</th>
<td>Computer Science</td>
</tr>
<tr>
<th>Year</th>
<td>Junior</td>
</tr>
<tr>
<th>Hometown</th>
<td>Fishkill, NY</td>
</tr>
<tr>
<th>Favorite Team</th>
<td>New York Knicks</td>
</tr>
</table>
</div>
</div>
</div>
</div><!-- /container -->
<!-- footer -->
<footer>
<div class="container">
<p>
© <span id="copy-year"></span> Test Student<br>
Built with <a href="http://v4-alpha.getbootstrap.com/">Bootstrap v4.1.2</a><br>
<small>Valid HTML5 + ARIA + SVG 1.1 + MathML 2.0</small>
</p>
</div>
</footer>
<!-- javascript -->
<script src="inc/js/jquery.min.js"></script>
<script src="inc/js/popper.min.js"></script>
<script src="inc/js/bootstrap.min.js"></script>
</body>
</html>