-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (50 loc) · 2.11 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
<!doctype html>
<html lang="en">
<!-- The head is where you store information about the document.-->
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href="styling.css" type="text/css">
<meta name="viewport" content="width=device-width">
<title>Home | l3vi.github.io</title>
</head>
<!-- The body contains the actual bulk of the content.-->
<body>
<header>
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cit230/index.html">CIT 230</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cit261/index.html">CIT 261</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cit366/index.html">CIT 366</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://powerful-retreat-77540.herokuapp.com/home.php">CS
313</a>
</li>
<li class="nav-item">
<a class="nav-link" target="_blank" href="https://l3vi.github.io/ePortfolio/">ePortfolio</a>
</li>
</ul>
</header>
<div id="wrapper">
<!--Contains the main content of the page-->
<main>
<h2>Assignments</h2>
<ul id="navList">
<li><a href="https://l3vi.github.io/ePortfolio/">ePortfolio</a></li>
<li><a href=cit230/index.html>CIT 230 projects</a> </li> <li><a href=cit261/index.html>CIT 261
portfolio</a> </li> </ul> </main> <!--The footer contains information about the site-->
<footer>
© 2018 - Levi Stum
</footer>
</div>
</body>
</html>