-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
41 lines (39 loc) · 1.17 KB
/
Copy pathabout.html
File metadata and controls
41 lines (39 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<header class="navbar">
<div class="container">
<nav class="nav-container">
<a href="index.html" class="nav-logo-link">
<img src="images/logo.png" alt="Logo" class="nav-logo">
</a>
<ul class="nav-links">
<li><a href="index.html#contact">Contact</a></li>
<li><a href="about.html">About Me</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
</div>
</header>
<section class="content">
<div class="container">
<h2 class="page-heading">About Me</h2>
<img src="images/me.png" alt="Avatar", class="aboutme-image">
<p class="aboutme-para"> Studying Computer Engineering, Currently enrolled at SUNY Westchester Community</p>
<!-- Add more personal details here -->
</div>
</section>
<footer>
<div class="container">
<p>2024 DanJHaas.</p>
</div>
</footer>
</body>
</html>