-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
102 lines (99 loc) · 3.17 KB
/
about.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
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Me</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>About Me</h1>
<h2 style="color: white">Let me tell you about myself a little bit!</h2>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About Me</a>
<a href="portfolio.html">Portfolio</a>
<a href="contact.html">Contact</a>
</nav>
<div class="AboutMe">
<div class="Hobbies">
<section class="Summary">
<h3>Hobbies</h3>
<p>
Other than sitting class from 9:30am to 2:00pm, you can often
finding me watching anime, working out, playing video games, playing
piano, or cooking.
</p>
<p>
Some of my favorite animes are: "The Disastorous Life of Saiki K.",
"Classroom of the Elite", "Your Lie in April", and "Sgt. Frog"
</p>
<p>
Currently the only games I really play are Valorant and Osu. No I
dont smurf your peak. I am only Ascendant 2.
</p>
<p>My favorite things to cook/bake are cookies and cheesecake.</p>
<p>I also enjoy sports. I often go play basketball or skate.</p>
</section>
<div class="Favorites">
<h3>Favorites</h3>
<h4>Animes</h4>
<ul>
<li>Sgt. Frog</li>
<li>The Disastorous Life of Saiki K.</li>
<li>Classroom of the Elite</li>
<li>Your Lie in April</li>
</ul>
<h4>Games</h4>
<ul>
<li>Valorant</li>
<li>Osu</li>
<li>Skate 3</li>
<li>Watch Dogs 2</li>
</ul>
<h4>Foods</h4>
<ul>
<li>Cookies</li>
<li>Cheesecake</li>
</ul>
</div>
</div>
<div class="Skills">
<h3>Skills</h3>
<ul id="skillslist">
<li>Adobe Premier + After Effects</li>
<li>Drums (10+ Years)</li>
<li>Piano (10+ Years)</li>
<li>Cyber Security Basics Certification</li>
<li>HTML</li>
<li>CSS</li>
</ul>
<h3>Languages</h3>
<ul id="languageslist">
<li>English</li>
<li>Spanish</li>
<li>ASL</li>
</ul>
</div>
<div class="Contact">
<h3>Contact</h3>
<div class="contactimg">
<img
src="https://cdn1.iconfinder.com/data/icons/google-new-logos-1/32/gmail_new_logo-512.png"/>
<img
src="https://icons.iconarchive.com/icons/iynque/ios7-style/512/Phone-icon.png"
/>
<img
src="https://www.freepnglogos.com/uploads/discord-logo-png/discord-logo-logodownload-download-logotipos-1.png"
/>
<img
src="https://cdn-icons-png.flaticon.com/512/25/25231.png"
/>
<img
src="https://play-lh.googleusercontent.com/A-Rnrh0J7iKmABskTonqFAANRLGTGUg_nuE4PEMYwJavL3nPt5uWsU2WO_DSgV_mOOM"
/>
</div>
</div>
</div>
</body>
</html>