-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (64 loc) · 2.27 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>aili dive</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Enter Page -->
<section id="enter-page">
<!-- Video with sound, looping -->
<video autoplay loop id="background-video" preload="auto" playsinline>
<source src="ocean_wave.mp4" type="video/mp4">
<source src="ocean_wave.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<div class="overlay">
<!-- Clickable text -->
<h1 id="enter-text">Dive In</h1>
</div>
</section>
<!-- Main Page -->
<section id="main-page" style="display: none;">
<div class="content">
<h1>aili - 爱礼</h1>
<div class="quote">
" you only live once "
</div>
<p>
Life:<br>
2001 - made in Shanghai<br>
2017 - sailed the high seas, arrived in america <br>
2024 - took a leap from school to meet and work with cool people in the bay<br>
2025 - coming soon<br>
<br>
Currently:<br>
scaling <a href="https://fish.audio" target="_blank">fish.audio</a><br>
founding & living at <a href="https://harvardst.co" target="_blank">harvardst.co</a><br>
studying international relations and economics at boston college<br>
writing about US-China AI race<br>
<br>
Interests:<br>
bringing agentic ppl together, max out their potential<br>
learning about manufacturing, supply chain, education, population ageing and immigration<br>
outdoor adventures: freediving, snowboarding, climbing, circus<br>
solo traveling<br>
</p>
</div>
<div class="socials">
reach out to me!<br>
twitter: <a href="https://x.com/aililiuu" target="_blank">@aililiuu</a> <br>
email: <a href="mailto:[email protected]">[email protected]</a><br>
</div>
<nav class="sidebar">
<a href="#travels">travels</a>
<a href="#blogs">blogs</a>
<a href="#recipes">recipes</a>
<a href="#galleries">galleries</a>
</nav>
</section>
<script src="script.js"></script>
</body>
</html>