-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
83 lines (79 loc) · 2.5 KB
/
Copy pathindex.html
File metadata and controls
83 lines (79 loc) · 2.5 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Capture Zoe</title>
<link rel="stylesheet" href="style.css" />
<!-- fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;1,300;1,400;1,500&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- css -->
<link rel="stylesheet" href="common.css" />
</head>
<body>
<div class="content">
<nav class="nav">
<ul class="nav-links">
<li class="nav-link">
<a href="/pages/about/index.html"> About</a>
</li>
<li class="nav-link"><a href="/pages/photo/index.html">Photo</a></li>
<li class="nav-link">
<a href="/pages/contact/index.html">Contact</a>
</li>
<li class="nav-link">
<a href="https://www.instagram.com/capturezoe/">Instagram</a>
</li>
</ul>
</nav>
<div class="hamburger-parent">
<i class="material-icons">menu</i>
</div>
<div class="sidebar">
<div class="nav-container">
<i class="material-icons sidebar-cross">clear</i>
<ul class="nav-list">
<li class="list-item">
<a href="/pages/about/index.html">About</a>
</li>
<li class="list-item">
<a href="/pages/photo/index.html">Photo</a>
</li>
<li class="list-item">
<a href="/pages/contact/index.html">Contact</a>
</li>
<li class="list-item">
<a href="https://www.instagram.com/capturezoe/">Instagram</a>
</li>
</ul>
</div>
</div>
<main class="main">
<div class="hero-text-container">
<h3 class="CAPTURE brat">CAPTURE</h3>
<h1 class="ZOE brat">ZOE</h1>
</div>
<img
src="/assets/NewLunaLandscapeComp.jpg"
alt="close up blue eyed huskey"
class="slide-1 active"
/>
<img src="/assets/beach.jpg" alt="Sunset on a beach" class="slide-2" />
<img
src="/assets/CambridgeFlowerCoolComp.jpg"
alt="Small purple flowers with bokeh background"
class="slide-3"
/>
</main>
</div>
<script src="app.js"></script>
<script src="sidebar.js"></script>
</body>
</html>