-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
71 lines (57 loc) · 2.52 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>More about me</title>
<link rel="stylesheet" href="CSS/styles.css">
</head>
<body>
<h1 id="aboutMeTitle">More About me</h1>
<p class="bio">
I enjoy puzzle games (mainly chess) and some video games.
Some of my hobbies are listed down below!
</p>
<h3 class="header">Hobbies</h3>
<!-- Requirement-1.P -->
<div class="hobbies">
<details>
<!-- Requirement-1.Q -->
<summary>Chess</summary>
<!-- Requirement-1.G -->
<p class="description">
Chess is a game that I enjoy playing as it involves a lot of thinking<br>
and strategy. The rules are very simple, but the game itself has much <br>
depth.
</p>
<img src="images/chessboard.png" alt="chess board">
</details>
<details>
<summary>osu!</summary>
<p class="description">
osu! is a popular rhythm game that I enjoy playing in my free time.<br>
There are four different game modes in osu but the only one that I<br>
play regularly is standard osu in which the player clicks and drags circles<br>
to the beat of the song.
</p>
<img src="images/osulogo.png" alt="osu logo">
</details>
<details>
<summary>Valorant</summary>
<p class="description">
Valorant is a team-based free-to-play tactical first-person-shooter game<br>
developed by Riot Games. This is a game that I genuinely do not enjoy playing.<br>
I have never played a game that has made me more upset, angry, and disappointed <br>
at myself and others than any other game I have played. I will never willingly <br>
play this game by myself. However, for the sake of having friends, I only play <br>
this game whenever another friend asks me to play.
</p>
<img src="images/valorantlogo.png" alt="valorant logo">
</details>
</div>
<br>
<nav id="backButton">
<div class="link">
<a href="index.html">Return Home</a>
</div>
</nav>
</body>
</html>