-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (91 loc) · 2.9 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<script type="module" src="/main.js"></script>
<link rel="icon" type="image/svg+xml" href="./assets/favicon.svg" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Source+Sans+Pro&family=Source+Serif+Pro:wght@700;900&display=swap"
rel="stylesheet"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
/*animation for splashscreen*/
@keyframes slideDown {
from {
transform: translate(-50%, -50%);
}
to {
transform: translate(-50%, 100%);
}
}
</style>
<!--Import all assets not in the main script-->
<link rel="stylesheet" id="css" href="./css/global.css" />
<title>Tonnieboy</title>
</head>
<body id="body">
<canvas id="bg"></canvas>
<div class="scrollButton" id="backButton">
<img
src="./assets/icons/arrow-up-solid.svg"
class="arrow"
id="arrow-up"
alt="Go back one page"
/>
</div>
<div class="scrollButton" id="nextButton">
<img
src="./assets/icons/arrow-down-solid.svg"
class="arrow"
id="arrow-down"
alt="Go to next page"
/>
</div>
<main>
<div id="page1">
<header id="header1">
<h1>Tonnieboy</h1>
</header>
<section id="mobileSwipe">
<p>Swipe up to continue, Swipe down to go back</p>
</section>
<blockquote>
<h2>Just a teen improving himself.</h2>
</blockquote>
</div>
<section id="page2" class="invisible">
<h2>About Me 🧑🏽💻</h2>
<p>
Hi! I'm Anthony. I don't have that much on my resume as of right now,
so this site is a bit empty. Thanks for stopping by anyway!
</p>
</section>
<section id="page3" class="light invisible">
<h2>💼 My Work</h2>
<p>
As of writing this (2023), I am currently attending high school. Other
than that, check out my
<a href="https://github.com/tonnieboy300">GitHub</a> for some of my
other sites.
</p>
<h2>🏆 Accomplishments</h2>
<ul>
<li>Graduated from Middle School.</li>
<li>Participated in World Robot Olympiad competition in 2019.</li>
<li>Creator of tonnieboy.com</li>
</ul>
</section>
<footer id="page4" class="invisible">
<h2>Tonnieboy</h2>
<p>Made with ❤️ by Tonnieboy300</p>
<p><a href="./attribution">Attribution and Copyright</a></p>
</footer>
</main>
<div class="splash" id="splash">
<img src="./assets/favicon.svg" alt="Tonnieboy Logo" class="splashLogo" />
</div>
</body>
</html>