-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery.html
More file actions
97 lines (97 loc) · 5.27 KB
/
Copy pathgallery.html
File metadata and controls
97 lines (97 loc) · 5.27 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"/>
<title>Play | Waverly Huang </title>
<link rel="icon" type="image/x-icon"
href="favicon.jfif"/> <!--Where is the favicon? We have patrick here for now-->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css"
integrity="sha512-NhSC1YmyruXifcj/KFRWoC561YpHpc5Jtzgvbuzx5VozKpWvQ+4nXhPdFgmx8xqexRcpAglTj9sIBWINXa8x5w=="
crossorigin="anonymous" referrerpolicy="no-referrer"/>
<script src="https://kit.fontawesome.com/f14364448c.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css">
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://use.typekit.net/csr8dau.css">
</head>
<body>
<!--NAVBAR-->
<nav class="navbar">
<a class="logo-img" href="index.html">
<img src="favicon.jfif" width="36" height="36" alt="about / favicon"><!--Where is the favicon? We have patrick here for now-->
</a>
<ul class="link-list">
<li class="nav-item underline"><a href="index.html">index</a></li>
<li class="nav-item underlined"><a href="gallery.html">gallery</a></li>
<li class="nav-item underline"><a href="about.html">about</a></li>
</ul>
<button class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
</button>
</nav>
<!--HEADER-->
<div class="greeting-wrapper-gallery" style = "background-color: white;">
<h1 class="h1-but-smaller serif left-a-lot white greeting-animation"><span style="white-space: nowrap; text-align:left;">In my spare time, I like to dabble in analogue photography.
</span>
</h1>
</div>
<div class="spacer"></div>
<!--WORK-->
<div class="flex-wrapper media-wrapper"> <!-- also no way you have all these photos of NZ lol is this maggie's-->
<div class="flex-left">
<div class="media-wrapper thumbnail">
<img src="city.jfif" alt="Morning on Customs St" style = "width: 300px; height: 400px;">
</div>
<div class="media-wrapper thumbnail">
<img src="train.jfif" alt="Train over Ōrākei" width="100%" style = "width: 500px; height: 600px;">
</div>
<div class="media-wrapper thumbnail">
<img src="station.jpg" alt="Britomart Station" width="100%" style = "width: 500px; height: 600px;">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\pride.jpg" alt="Auckland Pride 2021" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\everybodys.jpg" alt="Everybody's neon sign" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\bestie.jpg" alt="Bestie cafe" width="100%">
</div>
</div>
<div class="flex-right"> <!-- probably should be middle?-->
<div class="media-wrapper thumbnail">
<img src="1200px-Viaduct_Basin_Auckland_01.jpg" alt="Viaduct Harbour morning" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\beach.jpg" alt="Sunrise beach" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\paddle.jpg" alt="Paddle at sunrise" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\hilltop.jpg" alt="Hilltop at sunset" width="100%">
</div>
<div class="media-wrapper thumbnail">
<img src="images\play\dairy.jpg" alt="Eastern Beach Dairy" width="100%">
</div>
</div>
</div>
<!--FOOTER-->
<div class="spacer"></div>
<div class="footer-wrapper">
<div class="centre">
<h3 class="h3-and-a-bit serif">Thanks for stopping by.<br>Let's keep in touch!</h2>
<div class="social-icons">
<a href="mailto:mxian@risd.edu" target="_blank" class="bi bi-envelope-paper icon-link_centre"></a>
<a href="https://www.linkedin.com/in/waverly-huang-66930622a//" target="_blank" class="fa-brands fa-linkedin-in icon-link_centre"></a>
<a href="https://github.com/waverlyhuang2004" target="_blank" class="fa-brands fa-github-alt icon-link_centre"></a>
</div>
</div>
<p class="copyright">© coded by Waverly Huang, 2024 || made with blood, sweat, and fears.</p>
</div>
<!--JS-->
<script src="js\index.js"></script>
</body>
</html>