-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
43 lines (40 loc) · 1.27 KB
/
about.html
File metadata and controls
43 lines (40 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Adriana Szekeres - About">
<title>Adriana Szekeres - About</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="container">
<h1>Adriana Szekeres</h1>
<p class="subtitle">About</p>
</div>
</header>
<nav>
<div class="container">
<a href="index.html">Home</a>
<a href="research.html">Research Papers</a>
<a href="projects.html">GitHub Projects</a>
<a href="about.html" class="active">About</a>
</div>
</nav>
<main class="container">
<section id="about">
<h2>About</h2>
<p>Welcome to my personal website. Here you can find information about my research publications and open-source projects.</p>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Adriana Szekeres. All rights reserved.</p>
<div class="footer-links">
<a href="https://github.com/aaasz" target="_blank">GitHub</a>
</div>
</div>
</footer>
</body>
</html>