-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 2.72 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Andre Mossi - Links</title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
<link rel="stylesheet" href="global.css" />
<script>
window.addEventListener('DOMContentLoaded', () => {
setTimeout(() => {
const main = document.querySelector('main')
main.style.bottom = 0
}, 1000)
})
</script>
</head>
<body>
<!-- <background> -->
<!-- <h1>アン</h1> -->
<!-- <h1>ドレ</h1> -->
<!-- </background> -->
<canvas id="bg"></canvas>
<script type="module" src="model.js"></script>
<main>
<header>
<img src="PortfolioPic.png" />
<h1>Andre Mossi</h1>
</header>
<ul>
<li>
<a href="https://andremossi.vercel.app/">
<img src="Icons/WebsiteIcon.png" />Website</a
>
</li>
<li>
<a href="https://github.com/AndreM222"
><img src="Icons/GithubIcon.png" />Github</a
>
</li>
<li>
<a href="https://www.linkedin.com/in/andre-mossi-803765236/"
><img src="Icons/LinkedInIcon.png" />LinkedIn</a
>
</li>
<li>
<a href="mailto: mossiroberto0392@gmail.com"
><img src="Icons/EmailIcon.png" />Email</a
>
</li>
<ul style="columns: 3">
<li>
<a href="https://x.com/AndreMossi" class="Icon"
><img src="Icons/X-Logo.png"
/></a>
</li>
<li>
<a
href="https://www.reddit.com/user/Temix222"
class="Icon"
><img src="Icons/RedditIcon.png"
/></a>
</li>
<li>
<a
href="https://www.instagram.com/andremoxxi/"
class="Icon"
><img src="Icons/InstagramIcon.png"
/></a>
</li>
</ul>
</ul>
</main>
</body>
</html>