-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (94 loc) · 4.18 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
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Njordhaven</title>
<!-- Verknüpfung mit externer CSS-Datei -->
<link rel="stylesheet" href="style.css">
<!-- Preconnect für optimiertes Laden von Schriftarten -->
<link rel="preconnect" href="https://fonts.bunny.net" />
<link rel="preconnect" href="https://fonts.bunny.net" />
<link href="https://fonts.bunny.net/css?family=abyssinica-sil:400|be-vietnam-pro:200,400,900" rel="stylesheet" />
</head>
<body>
<!-- Header-Bereich -->
<header class="header">
<!-- Logo und Titel -->
<div class="logo">
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/fc81aa92dafcc67d1a27160f8962691bc6dd350d/assets/logo.svg"
alt="logo">
<p class="title">FURNITURE THAT MATTERS</p>
</div>
<!-- Navigation -->
<div class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
</header>
<!-- Hauptseite mit Bildern und Text -->
<div class="page">
<!-- Bilder der Hauptprodukte -->
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/couch.webp" alt="couch">
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/sessel.webp" alt="sessel">
<!-- Überschrift -->
<h1 class="h1">Not just furniture, <br> but a lifestyle</h1>
<!-- Chevron-Icon -->
<svg xmlns="http://www.w3.org/2000/svg" fill="white" class="icon-chevron" viewBox="0 0 16 16">
<path fill-rule="evenodd"
d="M1.646 6.646a.5.5 0 0 1 .708 0L8 12.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708">
</path>
<path fill-rule="evenodd"
d="M1.646 2.646a.5.5 0 0 1 .708 0L8 8.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708">
</path>
</svg>
</div>
<!-- Erster Produktartikel -->
<article class="product-1">
<!-- Produktbild -->
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/sessel-white.webp"
alt="sessel-white">
<!-- Produktbeschreibung -->
<div class="descripsion">
<h2>HyggeHaven</h2>
<p>An epitome of Scandinavian opulence and comfort. Meticulously crafted for unparalleled relaxation, this
chair embodies solace at its finest. Indulge in the ultimate hygge experience, whether immersed in a
novel or savouring a fine tea."</p>
<button class="button"> More Information</button>
</div>
<!-- Zweiter Produktartikel -->
</article>
<article class="product-2">
<!-- Produktbeschreibung -->
<div class="descripsion-2">
<h2>ScandiCraft</h2>
<p>Where sophistication meets Scandinavian craftsmanship. Comprising three seamlessly integrated parts, this
table is a testament to timeless design and exquisite detailing. Elevate your living space with its
unparalleled elegance, whether hosting gatherings or simply enjoying moments of solitude.</p>
<button class="button">More Information</button>
</div>
<!-- Produktbild -->
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/tische.webp" alt="tisch">
</article>
<!-- Footer-Bereich -->
<footer class="footer-menu">
<div class="logo-2"><img
src="https://raw.githubusercontent.com/ferniemann/njordhaven/fc81aa92dafcc67d1a27160f8962691bc6dd350d/assets/logo.svg"
alt="logo2">
<!-- Footer-Logo und Titel -->
<h3>NjordHaven</h3>
</div>
<!-- Footer-Navigation -->
<div>
<nav class="nav-footer">
<li>Legal Notice</li>
<li>Privacy</li>
</nav>
</div>
</footer>
</body>
</html>