-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (80 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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" />
<link rel="stylesheet" href="style.css" type="text/css">
<title>njordhaven Olaf</title>
</head>
<body>
<header class="navcontainer">
<div>
<img src="https://raw.githubusercontent.com/ferniemann/njordhaven/fc81aa92dafcc67d1a27160f8962691bc6dd350d/assets/logo.svg"
alt="The logo of NjordHaven">
<p>FURNITURE THAT MATTERS</p>
</div>
<nav>
<ul>
<li><a class="navlink" href="./index.html">Home</a></li>
<li><a class="navlink" href="./index.html">Products</a></li>
<li><a class="navlink" href="./index.html">Services</a></li>
<li><a class="navlink" href="./index.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<header class="headingimage">
<h1>Not just furniture,<br>but a lifestyle</h1>
<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>
</header>
<section class="itemcontainer">
<img id="whitechair" class="productimage"
src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/sessel-white.webp"
alt="A white armchair in a bright, modern ambience.">
<article class="infobox">
<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>
<a href="./index.html">More Information</a>
</article>
</section>
<section class="itemcontainer">
<article class="infobox">
<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>
<a href="./index.html">More Information</a>
</article>
<img class="productimage"
src="https://raw.githubusercontent.com/ferniemann/njordhaven/main/assets/tische.webp"
alt="Three elegant wooden minimalist desks, pushed together.">
</section>
<footer>
<img id="logofooter"
src="https://raw.githubusercontent.com/ferniemann/njordhaven/fc81aa92dafcc67d1a27160f8962691bc6dd350d/assets/logo.svg"
alt="The logo of NjordHaven">
<p>NjordHaven</p>
<ul>
<li><a href="./index.html">LegalNotice</a></li>
<li><a href="./index.html">Privacy</a></li>
</ul>
</footer>
</main>
</body>
</html>