-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprojects.html
52 lines (41 loc) · 1.71 KB
/
projects.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">
<title>yoder.ing / projects</title>
<link rel="stylesheet" href="assets/styles_other.css">
<link rel="shortcut icon" type="image/x-icon" href="assets/favicon.ico">
</head>
<body>
<div class="list">
<p><a class="a-selected">projects</a></p>
<p class="p1"><a class="regular" href="graphify.html">graphify</a></p>
<p class="p1"><a class="regular" href="patatap.html">patatap clone</a></p>
<p class="p1"><a class="regular" href="audio.html">audio visualizer</a></p>
</div>
<div class="image-grid">
<a href="graphify.html" target="_blank">
<div class="image-container">
<img src="assets/img/graphify.png" alt="graphify">
<p class="overlay-text" >graphify</p>
</div>
</a>
<a href="patatap.html" target="_blank">
<div class="image-container">
<img src="assets/img/patatap.png" alt="patatap">
<p class="overlay-text" >patatap clone</p>
</div>
</a>
<a href="audio.html" target="_blank">
<div class="image-container">
<img src="assets/img/audio.png" alt="audio visualizer">
<p class="overlay-text" >audio visualizer</p>
</div>
</a>
</div>
<footer> <a class="regular" href="index.html">return</a> </footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/animejs/3.2.0/anime.min.js"></script>
<script src="assets/script_other.js"></script>
</body>
</html>