-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (77 loc) · 2.38 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apple-like Website</title>
<link rel="stylesheet" href="style.css">
<script src="app.js" defer></script>
</head>
<body class="container">
<div class="animation-container"></div>
<header >
<nav>
<ul>
<li><a href="#">Startseite</a></li>
<li><a href="#">Produkte</a></li>
<li><a href="#">Support</a></li>
<li><a href="#">Kontakt</a></li>
</ul>
</nav>
<div class="logo">
<img src="apple-logo.png" alt="Apple Logo">
</div>
</header>
<section class="hero">
<div class="animation-container"></div>
<div class="confetti"></div>
<h1>Entdecke die Zukunft.</h1>
<p>Erlebe innovative Produkte von Apple, die dein Leben bereichern.</p>
<a href="#" class="cta-button">Jetzt kaufen</a>
</section>
<!--<section class="featured-products">
<div class="animation-container"></div>
<h2>Unsere Produkte</h2>
<!– Hier könnten Produkte angezeigt werden –>
</section>-->
<section class="phoneConti">
<div>
<h2>Unsere Produkte</h2>
</div>
<div class="iphone">
<div class="screen">
<!-- <p>huhu</p>-->
<!-- Hier kannst du deinen Inhalt, z. B. ein Bild oder andere Elemente, einfügen -->
</div>
</div>
</section>
<section class="newsletter">
<div class="animation-container"></div>
<h2>Newsletter abonnieren</h2>
<p>Erhalte die neuesten Informationen zu unseren Produkten und Angeboten.</p>
<form action="#" method="post">
<input type="email" name="email" placeholder="Deine E-Mail-Adresse" required>
<button type="submit">Abonnieren</button>
</form>
</section>
<section id="parallax2" class="parallax">
<div class="parallax-bg"></div>
<div class="parallax-content">
<h2>Weitere Informationen</h2>
<p>Hier findest du weitere spannende Details über unser Unternehmen.</p>
</div>
</section>
<div id="features">
<h2>Unsere Besonderheiten</h2>
<ul>
<li>Qualitätsprodukte</li>
<li>Kundenorientierter Service</li>
<li>Innovation und Nachhaltigkeit</li>
</ul>
</div>
<footer>
<p>© 2023 Apple-like Website</p>
</footer>
<div class="animation-container"></div>
</body>
</html>