-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (53 loc) · 2.03 KB
/
index.html
File metadata and controls
53 lines (53 loc) · 2.03 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
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<title>Amelia Harris</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<nav class="navbar">
<h2 class="logo"><a href="index.html">personal website</a></h2>
<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>
<div class="about">
<div class="about-image">
<img
src="California Poppies.webp"
alt="California Poppies"
width="400pt"
,height="300pt"
/>
</div>
<div class="about-text">
<h3><em>Hi! I'm Amelia</em></h3>
<p>
I’m a current Junior Software Engineering Major at Cal Poly. I'm
passionate about full-stack development, and have interests in
quantum mechanics, mathematics, and making an impact with my work. I
love a good challenge and I’m driven to create innovative software.
I’m proficient in a wide range of programming languages/concepts
with excellent communication and an innate ability to solve problems
creatively.
</p>
<p>
Currently, I'm focusing on expanding my experience within software
development and I'm on the hunt for new opportunities to learn and
grow. Outside the classroom I'm learning Quantitative Finance in the
Cal Poly Quantitative Finance Club, tutoring my peers in a variety
of STEM coursework, thrifting with the Cal poly Sustainability Club,
and connecting with others like me who are enthusiastic about
technology, innovative solutions, and science.
</p>
</div>
</div>
</main>
<footer class="footer">© 2025 Amelia Harris | All Rights Reserved</footer>
</body>
</html>