-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
61 lines (55 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" href="web-style.css">
<!-- Icon -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css">
<meta name="viewport" content= "width=device-width, initial-scale=0.8">
</head>
<body>
<div class="banner">
<div class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="music.html">Music</a></li>
</ul>
<div class="icons">
<!-- Instagram Icon -->
<a href="https://www.instagram.com/eric_wu22/">
<i class="fa-brands fa-instagram fa-beat-fade"></i>
</a>
<!-- Discord Icon -->
<a href="https://discordapp.com/users/432793677035995166">
<i class="fa-brands fa-discord fa-beat-fade"></i>
</a>
<a href="https://github.com/ericwu2205">
<i class="fa-brands fa-github fa-beat-fade"></i>
</a>
</div>
</div>
</div>
<div class="wrapper">
<h1>About Me</h1>
<img src="images/about me profile.jpg" id="profile">
<p>
<br>
Hi, my name is Eric Wu. I am 19 and a second year Actuarial Studies and Computer
<br>Science student.
My favourite courses (in order from most liked to least) so far have been:
<div id="ranking">
<li> COMP1511 </li>
<li> COMP1531 </li>
<li> COMP2521 </li>
<li> COMP1521 </li>
</div>
</p>
<br>
<p>
In my free time, I enjoy playing games and listening or finding music. <i class="fa-regular fa-face-smile-beam fa-xs"></i>
</p>
</div>
</body>
</html>