-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (39 loc) · 1.78 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Holden's Personal Website</title>
<link rel="stylesheet" href="styles.css" />
<link rel="icon" href="images/personal-icon.png" class="icon">
</head>
<body style="background-color: #1f3e74">
<nav class="navbar">
<div style="padding-left: 1.5%;">
<img class="profile-icon" src="images/personal-icon.png" alt="Profile Icon"/>
</div>
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
<main style="text-align: center; padding-bottom: 4%;">
<h1 class="page-title" style="padding-top: 3%; padding-right: 4%">Welcome to my website!</h1>
<div>
<img class="about-image" src="images/ProfileImage.png" alt="Profile Image">
<div class="about-text">
<p>
My name is Holden Evers I am third year <strong>software engineering major</strong> at the University of California Polytechnic State Universty.
I am from Monterey California, where I have lived my whole life. In the context of programming I am most confortable in
<strong>Java programming</strong> and frameworks such as <strong>Spring</strong>, but have I also know <strong>HTML, CSS,
and Python</strong>. Outside the realm of programming and computer science I love to garden, excerice, and almost anything that has to do with the outdoors.
</p>
</div>
</div>
</main>
<footer class="footer">
© 2023 <Personal Website Name> | All Rights Reserved
</footer>
</body>
</html>