-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgallery.html
387 lines (376 loc) · 27.6 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
<!-- add bio, education, speaking languages, and personal achievements -->
<!DOCTYPE html>
<html lang="en">
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-YZ67J70JFF"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-YZ67J70JFF');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hugo's portfolio</title>
<link rel="icon" type="image/x-icon" href="./img/brand/favicon.png" media="(prefers-color-scheme: no-preference)">
<link rel="icon" type="image/x-icon" href="./img/brand/favicon.png" media="(prefers-color-scheme: light)">
<link rel="icon" type="image/x-icon" href="./img/brand/icon_64.png" media="(prefers-color-scheme: dark)">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/cardstyle.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,600,0..1,200" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
</head>
<body>
<div id="page-loader" class=" justify-content-center align-items-center">
<div id="page-loader-content">
<img src="./img/brand/logo.png" height="96px" alt="logo" class="branding-colour">
<p class="font-display p1 opacity-50 fw-700 fs-5 m-1 mx-4" style="transform: scaleX(1.15);">Getting
everything ready...</p>
</div>
</div>
<nav class="navbar navbar-expand-md justify-content-between sticky-top overflow-x-hidden" id="navbar"
style="backdrop-filter: blur(6px); background-color: rgba(255, 255, 255, 0.6);">
<div class="container-fluid">
<div class="navbar-brand fw-semibold font-display col-3">
<a class="ms-md-2" href="#">
<img src="./img/brand/logo.png" height="48px" alt="logo" class="branding-colour">
</a>
</div>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse col-6 justify-content-center pe-md-4" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link fw-medium pe-3" aria-current="page" href="/index">
Home</a>
</li>
<li class="nav-item">
<a class="nav-link fw-medium pe-3" href="/about_me">
Biography</a>
</li>
<li class="nav-item">
<a class="nav-link fw-medium pe-3" href="/portfolio">
Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link fw-medium p1 pe-4" href="#">
Gallery</a>
</li>
<li class="nav-item d-md-none">
<a class="nav-link fw-medium" href="index#contact-me">
Contact</a>
</li>
</ul>
</div>
<div class="collapse navbar-collapse col-3 justify-content-end">
<a class="button-primary fw-medium py-2 me-4 font-display" href="index#contact-me">
Contact <span class="material-symbols-rounded button-primary-arrow">north_east</span></a>
</div>
</div>
</nav>
<!-- picture gallery section -->
<div class="min-vh-100">
<div class="container py-5">
<div class="row align-content-center align-items-center mx-lg-5">
<div class="">
<div class="px-2 mb-4">
<h1 class="fw-800 my-3 fs-1 font-display" style="font-size: 2.75em !important;">My <span
class="a2">gallery</span> 🖼️</h1>
<p class="px-3 d-non" id="galleryText">Please wait for all images to load.</p>
</div>
</div>
</div>
</div>
<div class="container-fluid max-width-2560">
<!-- picture gallery -->
<div class="px my-3">
<div>
<!-- masonry grid - EDITING THIS HTML FILE WILL MOST LIKELY BREAK GRID UNTIL PAGE REFRESH! -->
<div class="row row-cols-1 row-cols-md-2 row-cols-xl-3 g-2 row-masonry mb-4">
<div>
<h4 class="fw-800 font-display text-center p-4"><span class="a2">Creations & builds</span>
</h4>
</div>
<div class="card-masonry">
<a href="https://c5.rbxcdn.com/ae96fc62beba00e4ee29da3f7dc18870" target="_blank">
<img src="https://c5.rbxcdn.com/ae96fc62beba00e4ee29da3f7dc18870" class="img-fluid"
alt="Katana holders with katanas">
</a>
</div>
<div class="card-masonry">
<a href="https://c0.rbxcdn.com/b088d3d4f2a7fb58da1b6a93cd0221c7" target="_blank">
<img src="https://c0.rbxcdn.com/b088d3d4f2a7fb58da1b6a93cd0221c7" class="img-fluid"
alt="Abandoned overgrown industrial building">
</a>
</div>
<div class="card-masonry">
<a href="https://c7.rbxcdn.com/08bd838c14669f3739c16c400713c7dd" target="_blank">
<img src="https://c7.rbxcdn.com/08bd838c14669f3739c16c400713c7dd" class="img-fluid"
alt="Bedroom with carpenter workshop">
</a>
</div>
<div class="card-masonry">
<a href="https://c0.rbxcdn.com/6842768cb24d3800d45a48e229bcc855" target="_blank">
<img src="https://c0.rbxcdn.com/6842768cb24d3800d45a48e229bcc855" class="img-fluid"
alt="Lobby for players waiting for their friends">
</a>
</div>
<div class="card-masonry">
<a href="https://c1.rbxcdn.com/34dba3937afcc7479e7e133ff754529d" target="_blank">
<img src="https://c1.rbxcdn.com/34dba3937afcc7479e7e133ff754529d" class="img-fluid"
alt="Japanese dorm room">
</a>
</div>
<div class="card-masonry">
<a href="https://c6.rbxcdn.com/d7bda0e34a82fde4ddd01dc4968f5656" target="_blank">
<img src="https://c6.rbxcdn.com/d7bda0e34a82fde4ddd01dc4968f5656" class="img-fluid"
alt="Cozy living room at night">
</a>
</div>
<div class="card-masonry">
<a href="https://c6.rbxcdn.com/877ba90bef6ecb4a10a5127e1b0ab62e" target="_blank">
<img src="https://c6.rbxcdn.com/877ba90bef6ecb4a10a5127e1b0ab62e" class="img-fluid"
alt="Overgrown natural vegetation">
</a>
</div>
<div class="card-masonry">
<a href="https://c5.rbxcdn.com/3082775f793f1d953f50a75943c21a7a" target="_blank">
<img src="https://c5.rbxcdn.com/3082775f793f1d953f50a75943c21a7a" class="img-fluid"
alt="Japanese dojo training area from first floor">
</a>
</div>
<div class="card-masonry">
<a href="https://c7.rbxcdn.com/13a8adb79e03ce026030f886d0b6590a" target="_blank">
<img src="https://c7.rbxcdn.com/13a8adb79e03ce026030f886d0b6590a" class="img-fluid"
alt="Japanese dojo training gym">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86hmt-V6ihdUPzVeu5wccy95KAwQGjN7_Hb3Wj5WCX7I4r0CZZKwZomr1rtEc8Y8YMqDfawr1R3Bt1Fyyg1zuBAU2_PCU5l-bOaY4rhH5KwtSl3jtgUbT4Kfu0QjQtORrzWbNnOjbpgY86Mme0C2jVMgQ=w1265-h789-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86hmt-V6ihdUPzVeu5wccy95KAwQGjN7_Hb3Wj5WCX7I4r0CZZKwZomr1rtEc8Y8YMqDfawr1R3Bt1Fyyg1zuBAU2_PCU5l-bOaY4rhH5KwtSl3jtgUbT4Kfu0QjQtORrzWbNnOjbpgY86Mme0C2jVMgQ=w1265-h789-s-no?authuser=0"
class="img-fluid" alt="CPU and RAM modelling">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV85foKH_bAZG0R7h7AeK11NoQXy1CBZjML8bNWEgWRDGVbfMKBkdYSdXhNwME_d2a5Z-uxtc1yv_0iiJUp3Utin9basimhJRiEzk1amS11uIx3aNiUoz7_Pm-tYeSwRw4xM8q7bv4k1_TD8eUz0rjZowKA=w1265-h659-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV85foKH_bAZG0R7h7AeK11NoQXy1CBZjML8bNWEgWRDGVbfMKBkdYSdXhNwME_d2a5Z-uxtc1yv_0iiJUp3Utin9basimhJRiEzk1amS11uIx3aNiUoz7_Pm-tYeSwRw4xM8q7bv4k1_TD8eUz0rjZowKA=w1265-h659-s-no?authuser=0"
class="img-fluid" alt="PC motherboard modelling">
</a>
</div>
<div>
<h4 class="fw-800 font-display text-center p-4"><span class="a2">(UI) design</span></h4>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV85vwRifCNf8lrclVGTdMfWTmqM4hJZvsljzl-lU1L1fy3oJlFnU8J2exqFH1Gg7USmtAF9pfDqCxSVByDI5raWxAMG7oe9UdLgnkP8V_jxExv0FimCipQEpPApNCbsLCiQVIg9SH2fNj4ot3PS_s6rZLA=w1265-h684-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV85vwRifCNf8lrclVGTdMfWTmqM4hJZvsljzl-lU1L1fy3oJlFnU8J2exqFH1Gg7USmtAF9pfDqCxSVByDI5raWxAMG7oe9UdLgnkP8V_jxExv0FimCipQEpPApNCbsLCiQVIg9SH2fNj4ot3PS_s6rZLA=w1265-h684-s-no?authuser=0"
class="img-fluid" alt="Gun skins workshop contact page">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86RrtaWk7SygwJz0pDuh8PU_KPAuVAcpyXorjRmRFatyMMuv996AIzCbhTCfC7OOXK_Lj1kYqryaM4faWKKf_8bEX6JXvysU7dvHPYSWiJOGli_246cbJ-5q7OjYJ3LXVZL2WnggRC1LjODf_6PSCeNPQ=w1265-h687-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86RrtaWk7SygwJz0pDuh8PU_KPAuVAcpyXorjRmRFatyMMuv996AIzCbhTCfC7OOXK_Lj1kYqryaM4faWKKf_8bEX6JXvysU7dvHPYSWiJOGli_246cbJ-5q7OjYJ3LXVZL2WnggRC1LjODf_6PSCeNPQ=w1265-h687-s-no?authuser=0"
class="img-fluid" alt="Gamebase library page">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86FxBbfOeWyCeZ0X59c3jbeXCvGe924qAjs4Cm7owhqt8hrapNLBvLWW7rsC487u8oUVrQMAj8V4zU-MeKb_6HvX9t-nvOQnDd6YxHSWJCUG4WciOsmJvE0Bki8kI2r5L4DCKfMfvchQpzw0P1zZ5982g=w725-h381-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86FxBbfOeWyCeZ0X59c3jbeXCvGe924qAjs4Cm7owhqt8hrapNLBvLWW7rsC487u8oUVrQMAj8V4zU-MeKb_6HvX9t-nvOQnDd6YxHSWJCUG4WciOsmJvE0Bki8kI2r5L4DCKfMfvchQpzw0P1zZ5982g=w725-h381-s-no?authuser=0"
class="img-fluid" alt="Gamebase landing page">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86V0CIrPvr7FsYRlVSWeqKulh0o0eCo9qNHQi0kJV5jda8CHzWPTERVf9tvSAaKBUYugI36B2kiEmWO-9pZ9PFQrXAN_assL9EYG-httsh9ua5LRFKjhPBjtQ-hM3oSFdgKyjL47UzkI7YMsMorsKKKDQ=w725-h366-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86V0CIrPvr7FsYRlVSWeqKulh0o0eCo9qNHQi0kJV5jda8CHzWPTERVf9tvSAaKBUYugI36B2kiEmWO-9pZ9PFQrXAN_assL9EYG-httsh9ua5LRFKjhPBjtQ-hM3oSFdgKyjL47UzkI7YMsMorsKKKDQ=w725-h366-s-no?authuser=0"
class="img-fluid" alt="Gamebase feature highlights">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86rJ7vyRKd4bynJervbe9OKtxJ0LmIv_kw6YezlM2FBtdQu_OqRkw6LOFCfKoozLMM38Gno4BcAIvRMsx5EUxNg6VdOlDYpoHD5sTWq76_zSfrKWN3PUiVOCNUXVAqkaj8Ty6GdIOgEtkY9yDEvusUacA=w725-h821-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86rJ7vyRKd4bynJervbe9OKtxJ0LmIv_kw6YezlM2FBtdQu_OqRkw6LOFCfKoozLMM38Gno4BcAIvRMsx5EUxNg6VdOlDYpoHD5sTWq76_zSfrKWN3PUiVOCNUXVAqkaj8Ty6GdIOgEtkY9yDEvusUacA=w725-h821-s-no?authuser=0"
class="img-fluid" alt="Gamebase signup page">
</a>
</div>
<div class="card-masonry">
<a href="https://c5.rbxcdn.com/01cec317ea8b17d1c411af8f27fe67f9" target="_blank">
<img src="https://c5.rbxcdn.com/01cec317ea8b17d1c411af8f27fe67f9" class="img-fluid"
alt="Simple game UI design">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86yI3y9tW8DIKJt2WevdLHz6h2yXSD-2LM8NLCDJ3mvbFecET0qBls8gxN-7JIXJL-2Z4U3y_3_Ev5t0Y_J81LQc3MAyvuKjihe56h3yb0GofVgtkWFDgreud-xjZN26wdAshlecZ3z9CaLjECJUdKDAQ=w1023-h445-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86yI3y9tW8DIKJt2WevdLHz6h2yXSD-2LM8NLCDJ3mvbFecET0qBls8gxN-7JIXJL-2Z4U3y_3_Ev5t0Y_J81LQc3MAyvuKjihe56h3yb0GofVgtkWFDgreud-xjZN26wdAshlecZ3z9CaLjECJUdKDAQ=w1023-h445-s-no?authuser=0"
class="img-fluid" alt="Simple game UI design">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV84oZIWFjO9R62-tm6o6GwW0vLpjcu1Hgn26sM3HkdjUVRbmVUe2k_L92bE339zx_LCWzRdYFbuFK4tqQ4rNg3gk5lAMPMs3VCC9-Ex0hZBnrj-IpI5P-N0xZftVNQavhTGcLNO2PajTmUfKyn4IIhvAkA=w1432-h348-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV84oZIWFjO9R62-tm6o6GwW0vLpjcu1Hgn26sM3HkdjUVRbmVUe2k_L92bE339zx_LCWzRdYFbuFK4tqQ4rNg3gk5lAMPMs3VCC9-Ex0hZBnrj-IpI5P-N0xZftVNQavhTGcLNO2PajTmUfKyn4IIhvAkA=w1432-h348-s-no?authuser=0"
class="img-fluid" alt="Simple game UI design">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV87IztDaIx2TMvXYqL_bm8h39eqzoArBfOY3AJBWTKNbDTrgLh3YT9lCeW5yiFwn5ED7rJp1OrJC9arjI-5xhSeUizTb7xKNS5yA9QQwkkyj28nktFYNBbsB5z8FD8eXIm5lQ1Sr_S5JvDt4KyDKqPYEyw=w2009-h281-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV87IztDaIx2TMvXYqL_bm8h39eqzoArBfOY3AJBWTKNbDTrgLh3YT9lCeW5yiFwn5ED7rJp1OrJC9arjI-5xhSeUizTb7xKNS5yA9QQwkkyj28nktFYNBbsB5z8FD8eXIm5lQ1Sr_S5JvDt4KyDKqPYEyw=w2009-h281-s-no?authuser=0"
class="img-fluid" alt="Simple game UI design">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86nv7pazhGY5YQuE0Tmz1m6OggCdXfjj3TcEwT_pc8Th7qbvHmxLU69l1Tkfs13wmkBs7S1GyJ3F2OF5zvroTK567tlvCS1g1e3AadEwlqrfLx0Ez6NX9_NUJJg3cxBBmFxDSKr3c4f_1fOzn0nbCJB5A=w825-h1167-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86nv7pazhGY5YQuE0Tmz1m6OggCdXfjj3TcEwT_pc8Th7qbvHmxLU69l1Tkfs13wmkBs7S1GyJ3F2OF5zvroTK567tlvCS1g1e3AadEwlqrfLx0Ez6NX9_NUJJg3cxBBmFxDSKr3c4f_1fOzn0nbCJB5A=w825-h1167-s-no?authuser=0"
class="img-fluid" alt="Simple game UI design">
</a>
</div>
<div>
<h4 class="fw-800 font-display text-center p-4"><span class="a2">Digital art</span></h4>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV84XuSx6iChJtSKcWMCV6ruzp5v0kiBPbOMOPJDdZSrx-NesiTgXR5Hbc1yJYmvw5waj_13a15-gTj_QwYP0aqHrbgrEKl_bBobmwaN6TPBBAD8yD0Cs508tQjquvPtTWdzWBrbT6iZYTLj3p1BxzlJzFA=w1367-h1367-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV84XuSx6iChJtSKcWMCV6ruzp5v0kiBPbOMOPJDdZSrx-NesiTgXR5Hbc1yJYmvw5waj_13a15-gTj_QwYP0aqHrbgrEKl_bBobmwaN6TPBBAD8yD0Cs508tQjquvPtTWdzWBrbT6iZYTLj3p1BxzlJzFA=w1367-h1367-s-no?authuser=0"
class="img-fluid" alt="Digital drawing 1">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV87DD7xVy1ydGhBvC-sba_oyE5MrQgaFnrxWk8aoIes2pMRW5AWaG_2bCAo-QgCI9JA9t0oEQixXhD3iEZ4HPJyFc8JEd7RH5RKsvIiXTjRE4P3gMBsS84becKOIVXB2atR2-qdQKmFFvl_VPjkLkgOuMg=w1367-h1367-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV87DD7xVy1ydGhBvC-sba_oyE5MrQgaFnrxWk8aoIes2pMRW5AWaG_2bCAo-QgCI9JA9t0oEQixXhD3iEZ4HPJyFc8JEd7RH5RKsvIiXTjRE4P3gMBsS84becKOIVXB2atR2-qdQKmFFvl_VPjkLkgOuMg=w1367-h1367-s-no?authuser=0"
class="img-fluid" alt="Digital drawing 2">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV87IEPQeMQKOJkjWi5HF9e1eQ_oyzn2D4_TVkmOoKPRv-rHdiwIBuK3JwvAd7ypAOk1xNjk8xhEyRTSNHsiA4sd5u-m9XoLT__XpVKwlwbLp00lofSl4smOpbtp06cxNSHgzlRC4W6K3S-2MtD2qi78YiQ=w725-h407-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV87IEPQeMQKOJkjWi5HF9e1eQ_oyzn2D4_TVkmOoKPRv-rHdiwIBuK3JwvAd7ypAOk1xNjk8xhEyRTSNHsiA4sd5u-m9XoLT__XpVKwlwbLp00lofSl4smOpbtp06cxNSHgzlRC4W6K3S-2MtD2qi78YiQ=w725-h407-s-no?authuser=0"
class="img-fluid" alt="Youtube banner">
</a>
</div>
<div class="card-masonry">
<a href="https://lh3.googleusercontent.com/pw/ABLVV86Ou04oBok-Q3yKVfIKsu3yhIKnyqlF8Ya1csppcaX8qfmkUWlD5a_-mgjCoC17feWkYsW3pSHIjGYM04GWQeFI7sbDOGnlwSEtUw_jPjSsPA_fSywtceLzgoejQEaDqcJLwvguJNEf3vr1f2weqJUGrw=w725-h407-s-no?authuser=0"
target="_blank">
<img src="https://lh3.googleusercontent.com/pw/ABLVV86Ou04oBok-Q3yKVfIKsu3yhIKnyqlF8Ya1csppcaX8qfmkUWlD5a_-mgjCoC17feWkYsW3pSHIjGYM04GWQeFI7sbDOGnlwSEtUw_jPjSsPA_fSywtceLzgoejQEaDqcJLwvguJNEf3vr1f2weqJUGrw=w725-h407-s-no?authuser=0"
class="img-fluid" alt="Youtube video thumbnail">
</a>
</div>
<div class="card-masonry">
<a href="https://tr.rbxcdn.com/0de6cbe49953c218a76122a597f56ed7/768/432/Image/Png"
target="_blank">
<img src="https://tr.rbxcdn.com/0de6cbe49953c218a76122a597f56ed7/768/432/Image/Png"
class="img-fluid" alt="Game thumbnail 1">
</a>
</div>
<div class="card-masonry">
<a href="https://tr.rbxcdn.com/e418f3af32c43f7890e5455115863638/768/432/Image/Png"
target="_blank">
<img src="https://tr.rbxcdn.com/e418f3af32c43f7890e5455115863638/768/432/Image/Png"
class="img-fluid" alt="Game thumbnail 2">
</a>
</div>
</div>
<div class="d-flex justify-content-center" id="gallerySpinner">
<div class="spinner-grow" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- next up section -->
<div class="container-fluid p-0 mt-5">
<div class="learn-more py-lg-5">
<section class="container pt-4">
<div class="mb-4">
<h1 class="p1 font-display fw-900 z-3"
style="position: relative; transform: rotate(0deg); margin-top: -50px; top: 0;">Next up</h1>
<h1 class="p1 d-none d-md-block font-display fw-600 z-2"
style="position: relative; transform: rotate(-2deg); margin-top: -47px; top: 0; margin-left: 40px; opacity: .2;">
Next up</h1>
<h1 class="p1 d-none d-lg-block font-display fw-400 z-1"
style="position: relative; transform: rotate(-4deg); margin-top: -47px; top: 0; margin-left: 80px; opacity: 0.10; ">
Next up</h1>
</div>
</section>
<section class="container pb-5 text-center pt-4">
<div class="pb-4">
<h4>Okay, ready to get in touch?</h4>
<a class="button-transparent fs-5 font-display fw-500" href="index#contact-me">
Let's get talking<span
class="material-symbols-rounded fs-2 button-transparent-arrow">navigate_next</span>
</a>
</div>
</section>
</div>
</div>
<!-- toast -->
<div class="toast-container position-fixed bottom-0 start-50 translate-middle-x p-3">
<div id="loadingToast" class="toast align-items-center" role="alert" aria-live="assertive" aria-atomic="true"
data-bs-autohide="false">
<div class="d-flex align-items-center">
<div class="ms-1 spinner-border" style="width: 1.5rem; height: 1.5rem;" role="status">
<span class="visually-hidden">Loading...</span>
</div>
<div class="toast-body" id="loadingToastText">
Please wait for all images to load...
</div>
</div>
</div>
</div>
<!-- footer section -->
<div class="footer-top">
<footer class="container text-center py-5">
<ul class="nav justify-content-center list-unstyled">
<li class=""><a href="https://github.com/unchihugo" target="_blank" class="footer-link"><img
src="https://cdn-icons-png.flaticon.com/512/25/25231.png" class="img-fluid" width="20px"
style="margin-top: -4px; filter:invert(1);"></a></li>
<li class="ms-3"><a href="https://create.roblox.com/talent/creators/54998200" target="_blank"
class="footer-link"><img
src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/eb/Roblox_Studio_logo_-_2022.svg/640px-Roblox_Studio_logo_-_2022.svg.png"
class="img-fluid" width="20px"
style="margin-top: -4px; filter:brightness(0) invert(1);"></a></li>
<li class="ms-3"><a href="https://www.linkedin.com/in/hugo-li-474a8424b/" target="_blank"
class="footer-link"><img src="https://cdn-icons-png.flaticon.com/512/61/61109.png"
class="img-fluid ms-1" width="20px" style="margin-top: -4px; filter:invert(1);"></a></li>
<li class="ms-4"><a
href="https://docs.google.com/document/d/16hz7TbAUuhvHlPkhUPIAliY94eFtlBoi3-d6uV7l7F8/edit?usp=sharing"
target="_blank" class="footer-link">Paper CV<span
class="material-symbols-rounded ms-1">description</span></a>
</li>
<li class="ms-4"><a href="#" class="footer-link">Back to top<span
class="material-symbols-rounded ms-1">arrow_upward</span></a></li>
</ul>
<div class="mt-5">
<img src="./img/brand/icon_128.png" height="48px" alt="logo" class="opacity-75 ms-1"
style="transform: rotate(35deg);">
</div>
<blockquote class="n2 m-0 mt-2 fw-700 font-display">Hugo Li</blockquote>
<blockquote class="n2 small fst-italic">© 2024 — All rights reserved.</blockquote>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<script src="./javascript/navscroll.js"></script>
<script src="https://cdn.jsdelivr.net/npm/masonry-layout@4.2.2/dist/masonry.pkgd.min.js"
integrity="sha384-GNFwBvfVxBkLMJpYMOABq3c+d3KnQxudP/mGPkzpZSTYykLBNsZEnG2D9G/X/+7D" crossorigin="anonymous"
async></script>
<script src="https://unpkg.com/imagesloaded@5/imagesloaded.pkgd.js"></script>
<script src="./javascript/gallery-grid.js"></script>
<script src="./javascript/loader.js"></script>
</body>
</html>