-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (51 loc) · 2.01 KB
/
index.html
File metadata and controls
62 lines (51 loc) · 2.01 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
<!doctype html>
<html>
<head>
<title>Main page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.css" />
<link rel="stylesheet" href="css/main.css" />
<!-- Bootstrap and jquery scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="js/bootstrap.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-md navbar-light">
<!-- Navbar title -->
<a class="navbar-brand abs" href="index.html">NS</a>
<!-- Navbar hamburger menu -->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarItems" aria-controls="navbarItems"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Navbar items -->
<div class="collapse navbar-collapse" id="navbarItems">
<ul class="navbar-nav">
<li>
<a href="projects.html" class="nav-link">Projects</a>
</li>
<li>
<a href="courses.html" class="nav-link">Courses</a>
</li>
<li>
<a href="experiments/experiments.html" class="nav-link">Experiments</a>
</li>
</ul>
<div class="navbar-nav ml-auto">
<a href="" class="nav-link">Contact</a>
</div>
</div>
</nav>
<!-- / Navigation Bar -->
<div class="container">
<div class="jumbotron">
<h1 class="display-4">Welcome To My Website!</h1>
<p class="lead">I am a Software Engineering student at the University Of Calgary. This website shows the courses I have taken
and the university and hobby projects I have done.</p>
</div>
</div>
</body>
</html>