-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 2.01 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 2.01 KB
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>
<head>
<title>Jordan Lu's Personal Website</title>
</head>
<body>
<nav class="navbar">
<h1 class="logo"><a href="index.html">personal website</a></h1>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<h1 class="page-title">About Me</h1>
<div class="about">
<div class="about-image">
<img
src="sky.jpg"
alt="A video of an image of the sky and clouds being too big"
width="300"
height="200"
/>
</div>
<div class="about-text">
<p>
Hello everyone! My name is <strong>Jordan Lu</strong> and I am a <strong>first year</strong> computer science major.
Some of my hobbies includes playing basketball, listening to music, playing video games, and going out with friends.
My favorite food is sushi and french fries. I love to being able to help others and make a positive impact in the world.
I hope to concentrate in <strong> cybersecurity </strong> or <strong> machine learning/AI </strong> learning in the future.
</p>
<p>
I'm currently seeking new opportunities to build my computing skills from the ground up and internship opportunities.
Some valuable skills that I have includes: supportive, coachable, reliable, resilient, positive, willing to learn, and mentorship along with leadership as well.
</p>
<p>
Hopefully I get to connect with you all soon! <strong> GO MUSTANGS! </strong>
</p>
</div>
</div>
</main>
<footer class="footer"> © 2025 Jordan Lu | All Rights Reserved</footer>
</body>
</html>