generated from savvy-coders/savvy-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.html
31 lines (31 loc) · 1.08 KB
/
gallery.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Savvy Coders Jan. 2020 Cohort</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Merriweather:400,900,900i|Montserrat&display=swap" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css" rel="stylesheet">
</head>
<body>
<header>
<h1>Example SPA</h1>
</header>
<nav>
<i class="fas fa-bars"></i>
<ul class="hidden--mobile nav-links">
<li><a href="bio.html">Bio</a></li>
<li><a href= "gallery.html">Gallery</a></li>
<li><a href="register.html">Register</a></li>
</ul>
</nav>
<section id="gallery"></section>
<footer>
© 2020 <a href="https://savvycoders.com/">Savvy Coders</a>
</footer>
<script src="index.js"></script>
</body>
</html>