-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (24 loc) · 774 Bytes
/
index.html
File metadata and controls
26 lines (24 loc) · 774 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>CSC 193A Assignments</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap" rel="stylesheet">
</head>
<body>
<header class="header-bar">
<h1>CSC 193A</h1>
</header>
<nav class="navbar">
<ul class="nav-links">
<li><a href="cat-bio.html">Assignment 2</a></li>
<li><a href="fancifymytext.html">Assignment 5</a></li>
<li><a href="encrypt-it.html">Assignment 6</a></li>
</ul>
</nav>
<div class="filler-image">
<img src="images/filler.png" alt="Html, CSS, and JS logos" width="500" >
</div>
</body>
</html>