-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (64 loc) · 2.52 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="My website" content="Place where my stuff goes :)">
<meta name="theme-color" content="#000000" />
<title>Matthew's website</title>
<link rel="stylesheet" href="style.css"/>
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
@import url('https://fonts.googleapis.com/css2?family=Cabin:wght@700&display=swap');
</style>
</head>
<body>
<h1 class="header" data-aos="zoom-in" id="head">Hello, I'm Matthew</h1>
<div class="contacts container">
<a id="discord" href="http://discordapp.com/users/658764004688134185" data-aos="zoom-out" data-aos-delay="100"> <button class="contact">Discord</button></a><a href="https://github.com/DatDerpyDude81" data-aos="zoom-out" data-aos-delay="100" id="Github" ><button class="contact" >Github</button></a><a href="https://replit.com/@MADSCIENTIST90" id="replit" data-aos="zoom-out" data-aos-delay="100"><button class="contact">Replit</button></a>
</div>
<div class="mainParent" data-aos="fade-down" data-aos-delay="300">
<p>Hi, I'm Matthew, an aspiring developer and robotics enthusiast.
<br>
In my spare time, I enjoy flying my drone, hanging out with my friends, or competing in robotics tournaments</p>
<center><a href="/robotics.html">My Robotics team</a></center>
</div>
<div>
<div class="containerLeft" data-aos="fade-right" data-aos-delay="200">
<ul>
Nicknames:
<li>ThatThingDownstairs</li>
<li>MADSCIENTIST90</li>
<li>VoiceBehindYou</li>
<li>DatDerpyDude81</li>
</ul>
</div>
<div class="containerRight" data-aos="fade-left" data-aos-delay="200">
<span class="like"><ul>
Likes:
<li>Programming</li>
<li>Boba</li>
<li>Cats</li>
<li>Internet Memes</li>
</ul>
</span>
<span class="dislike">
<ul>
Dislikes:
<li>Cheese</li>
<li>Mushrooms</li>
<li>Fantasy Novels</li>
<li>Discord Pings</li>
</span>
</div>
</div>
<div class="morespace"></div>
</body>
<script src="script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="script.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script>
AOS.init();
</script>
</html>