-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles/header.css" />
<link rel="stylesheet" href="styles/main.css" />
<link rel="icon" href="./favicon.ico" type="image/x-icon" />
<script src="lib/p5.min.js"></script>
<title>plue</title>
</head>
<body>
<header>
<img src="assets/img/logo.png" alt="PLUE" id="logo" />
<div id="title">
<ul>
<li><a href="#">pls_lower_ur</a></li>
<li><a href="#">_expectations</a></li>
</ul>
</div>
</header>
<main>
<p>
hi
</p>
<p>
welcome to my quiet corner of the internet
</p>
<p>
may you find solace in the subdued hues of the digital sky, and don't forget your umbrella, for the clouds above seem to weep in silent symphony.
</p>
<img class="deco" src="assets/img/courbet.png" alt="is">
</main>
<aside>
<button id="play">⏵</button>
<button id="pause">⏸</button>
<button id="weather">☀</button>
</aside>
<footer>
<p class="footer-text">made with ♥ by <a href="https://github.com/az4aaz">az4aaz</a></p>
</footer>
<script type="module" src="weather/constants.js"></script>
<script type="module" src="weather/canvas.js"></script>
<script type="module" src="weather/rain/raindrop.js"></script>
<script type="module" src="weather/api.js"></script>
<script type="module" src="weather/main.js"></script>
</body>
</html>