-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (37 loc) · 1.43 KB
/
index.html
File metadata and controls
40 lines (37 loc) · 1.43 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jan Lehner</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/agency-fb" rel="stylesheet">
<link href="https://fonts.cdnfonts.com/css/tw-cen-mt-std" rel="stylesheet">
<link rel="stylesheet" href="./Stylesheets/style.css">
<div id="stylesheetContainer"></div>
</head>
<body>
<div id="container">
<header>
<div class="flexbox" id="logoDiv">
<a href="#" id="logo-container"><img id="logo" src="./Images/jan_lehner_logo.png"
alt="Picture of my logo"></a>
</div>
</header>
<nav>
<a class="nav-btn" id="cv-btn" href="#cv"></a>
<a class="nav-btn" id="portfolio-btn" href="#portfolios"></a>
<a class="nav-btn" id="project-btn" href="#projects"></a>
<a class="nav-btn" id="skill-btn" href="#skills"></a>
</nav>
<main>
</main>
<footer>© Jan Lehner 2023</footer>
</div>
<div id="scriptHolder">
<script type="module" src="app.js"></script>
</div>
</body>
</html>