-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
71 lines (65 loc) · 2.43 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" type="image/png" href="hero-background.gif">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | einkabelju</title>
<link rel="stylesheet" href="styles.css">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
</head>
<body>
<!-- Navbar -->
<nav class="navbar">
<h1 class="logo">einkabelju</h1>
<ul class="nav-links">
<li><a href="#hero" class="nav-link">Home</a></li>
<li><a href="#about" class="nav-link">Über mich</a></li>
<li><a href="#services" class="nav-link">Was kann ich?</a></li>
</ul>
</nav>
<!-- Hero Section -->
<section id="hero" class="hero">
<div class="hero-overlay"></div>
<div class="animated-background"></div>
<div class="hero-content">
<h1 class="title">Willkommen auf meinem Portfolio</h1>
<p class="subtitle">Keiner Liebt mich 💔</p>
<a href="#about" class="cta-btn" id="discoverMore">Lerne, warum mich keiner Liebt 😊</a>
</div>
</section>
<!-- About Section -->
<section id="about" class="about" data-aos="fade-up">
<h2 class="section-title">Über mich</h2>
<p>Mich liebt keiner, weil ich einen kleinen Penis in der Hose habe, und meine Eltern geschwister sind! (:</p>
</section>
<!-- Services Section -->
<section id="services" class="services" data-aos="fade-up">
<h2 class="section-title">Was Kann ich?</h2>
<div class="services-wrapper">
<div class="service-card">
<h3>Nix</h3>
<p>Nix.</p>
</div>
<div class="service-card">
<h3>Nix</h3>
<p>Nix.</p>
</div>
<div class="service-card">
<h3>Nix (keiner liebt mich)</h3>
<p>Und wieder Nix.</p>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<p>© #Rektal-Gang. Alle Rechte vorbehalten.</p>
</footer>
<script src="https://unpkg.com/swiper/swiper-bundle.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="script.js"></script>
<script>
AOS.init();
</script>
</body>
</html>