-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·41 lines (38 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<title>Photo Gallery</title>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/new-styles.css">
</head>
<body>
<nav class="site-navigation">
<img class="site-icon" src="assets/logo-white.png" height="55" width="67" alt="">
<ul>
<li>
<a href="#people">People</a>
</li>
<li>
<a href="#places">Places</a>
</li>
<li>
<a href="#still-life">Still Life</a>
</li>
<li>
<a href="#fashion">Fashion</a>
</li>
<li>
<a href="#about">About</a>
</li>
</ul>
</nav>
<main class="site-content">
</main>
<p class="unsupported-notice">Unsupported browser</p>
<script src="scripts/images-data.js"></script>
<script src="scripts/masonry-gallery.js"></script>
<script src="scripts/overlay-gallery.js"></script>
<script src="scripts/new-scripts.js"></script>
<script src="scripts/index.js"></script>
</body>
</html>