-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutMe.html
42 lines (42 loc) · 1.54 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
<html>
<head>
<title> My HTML Project - About Me </title>
</head>
<body>
<header>
<h1>
Wengsing's Webpage
</h1>
<nav>
<a href = "index.html">Home</a>
<strong>About Me</strong>
<a href = "ComicsArchives.html">Comics Archives</a>
</nav>
</header>
<section>
<h3>
Welcome!
</h3>
<p>
Hi! My name is Wengsing Wong, and I am the creator of this project. I am currently a rising
junior at Baruch College studying Computer Information Systems (CIS) and minoring in Mathematics.
This is the first HTML project I have attempted.
</p>
<p>
In my free time, I enjoy playing video games, writing stories, drawing comics, and reading
fantasy novels. I also enjoy crosswords, sudoku, and nonograms.
</p>
<p>
Below are links to my email address, LinkedIn profile, and my GitHub profile.
</p>
<div>
<a href = "mailto:wengsing.wong@baruchmail.cuny.edu" target = "_blank">Outlook</a>
<a href = "https://www.linkedin.com/in/wengsing-wong/" target = "_blank">LinkedIn</a>
<a href = "https://github.com/WengsingVWong" target = "_blank">GitHub</a>
</div>
<p>
Thanks for visiting! ^_^
</p>
</section>
</body>
</html>