-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
41 lines (39 loc) · 2.08 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me | Connor Hege</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About Me</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>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<div class="about-container">
<img src="images/Connor.jpg" alt="Connor Hege" class="profile-image">
<div class="about-text">
<p>Hello! My name is <strong>Connor Hege</strong>. I graduated from the University of North Carolina Wilmington with a Bachelor's degree in Computer Science, concentrating in Digital Arts. I also hold an Associate's degree in Science from Cape Fear Community College.</p>
<p>I'm passionate about creating innovative and visually engaging digital experiences. My expertise includes web development, graphic design, and 3D modeling. I love using technology to bring creative ideas to life, whether it's through designing sleek websites, crafting digital artwork, or exploring the latest trends in gaming and multimedia.</p>
<p>When I'm not coding or designing, you can find me gaming, exploring creative projects, or learning about new technologies to enhance my skills.</p>
<p>Thank you for visiting my portfolio. Feel free to check out my <a href="portfolio.html">projects</a>, download my <a href="resume.html">resume</a>, or <a href="contact.html">get in touch</a> with me!</p>
</div>
</div>
</section>
</main>
<footer>
<p>© 2024 Connor Hege. All Rights Reserved.</p>
</footer>
</body>
</html>