-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (47 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Wesley Personal Website</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">Personal Website</a></h1>
<div class="navbar-links">
<a href="index.html">Wesley Tam</a>
<a href="blog.html">Blog</a>
<a href="portfolio.html">Portfolio</a>
<a href="resume.html">Resume</a>
<a href="contact.html">Contact</a>
</div>
</nav>
<main>
<h1 class="page-title">Wesley Tam</h1>
<div class="about">
<div class="about-image">
<img
src="imgs/WesleyTam.jfif"
alt="Image of myself"
width="441"
height="500"
/>
</div>
<div class="about-text">
<p>
My name is <strong>Wesley Tam</strong> and I am currently a student
at <strong>Cal Poly SLO</strong> studying
<strong>Computer Science</strong>! I love hanging out with friends,
working out at the gym, and playing video games.
</p>
<p>
Welcome to my personal website! If you have any <em>questions</em>,
<em>comments</em>, or <em>suggestions</em>, please let me know!
</p>
</div>
</div>
</main>
<footer class="footer">
© 2023 Wesley Tam Personal Website | All Rights Reserved
</footer>
</body>
</html>