-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (69 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
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Source</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Space+Mono:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<h1 class="logo">
<img src="./assets/logo.svg" alt="Source">
</h1>
</header>
<main>
<section>
<p>
An industrial design office based in Oslo. We design objects, surfaces, products, furniture and spaces.
</p>
</section>
<section class="office">
<img src="./assets/image_1.jpg" alt="office">
</section>
<section class="side-table">
<img src="./assets/image_2.jpg" alt="side table with lamp">
<div class="product-link">
<a href="#">Industrial Night Stand and Lamp ↗</a>
</div>
</section>
<section class="">
<p>
We work with a wide range of corporate and cultural clients, both locally and internationally.
</p>
</section>
<section class="shelves">
<img src="./assets/image_3.jpg" alt="chair and shelves">
<div class="product-link">
<a href="#">Day Chair ↗</a>
</div>
</section>
<section class="conference">
<img src="./assets/image_4.jpg" alt="conference area">
</section>
<section class="our-process">
<h2>
Our Process
</h2>
<hr>
<p>
We design furniture, lighting, accessories and components, working together with a range of suppliers and manufacturers. In particular, We have built a close relationship with a local foundry for cast elements in bronze and aluminium.
</p>
</section>
</main>
<footer>
<div>
<p>Contact:</p>
<a href="mailto:hello@source.nu">hello@source.nu</a>
</div>
<nav class="social-links">
<a href=#>Twitter ↗</a>
<a href=#>Facebook ↗</a>
<a href=#>Instagram ↗</a>
</nav>
</footer>
</body>
</html>