-
Notifications
You must be signed in to change notification settings - Fork 0
/
wunderkammer.html
131 lines (105 loc) · 3.99 KB
/
wunderkammer.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="no">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0 maximum-scale=5.0">
<title>Project – Wunderkammer</title>
<link rel="icon" type="image/x-icon" href="./assets/SD-logo-orange-12.png">
<meta name="description" content="An interaction designer has knowledge of both digital
technology and design methods, and works to understand how technical systems
are experienced by users.">
<link rel="stylesheet" href="https://use.typekit.net/tdd1sni.css">
<link rel="stylesheet" href="./css/variables.css">
<link rel="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/project.css">
</head>
<body>
<header>
<span class="desktop-header-branding">
<a href="index.html">
<img class="desktop-header-icon" src="./assets/SD-logo-orange-12.png" alt="Small Storheil Design logo">
</a>
</span>
<nav class="desktop-header">
<ul>
<li><a href="index.html"><h4>Home</h4></a></li>
<li><a href="about.html"><h4>About Me</h4></a></li>
<li><a href="contact.html"><h4>Contact</h4></a></li>
</ul>
</nav>
<div
role="button"
aria-label="Main menu icon"
class="burger-icon burger">
</div>
<nav class="mobile-nav mobile-nav-hide">
<ul>
<li><a href="index.html"><h4>Home</h4></a></li>
<li><a href="about.html"><h4>About Me</h4></a></li>
<li><a href="contact.html"><h4>Contact</h4></a></li>
</ul>
</nav>
</header>
<main>
<div class="section">
<div class="container">
<div class="project-hero">
<div class="project-intro">
<div class="project-intro-details">
<img class="project-favicon" src="./assets/wunderkammer.png" alt="wunderkammer-favicon">
<h2>Wunderkammer</h2>
<h2>2021</h2>
<h3>Physical print to digital website</h3>
<h4>Web design</h4>
</div>
<a href="https://fredrikstorheil.github.io/wunderkammer/">
<div class="ext-button">
View the website
</div>
</a>
</div>
<div class="project-image">
<img src="./assets/callum-shaw-TLxaYmixZ3k-unsplash.jpg" alt="Project image">
</div>
</div>
</div>
</div>
<div class="section">
<div class="container">
<div class="project-description-title">
<h2>Description</h2>
</div>
<div class="project-container">
<div class="project-description">
<p>We were tasked with coding a website for a book. <br>
The goal was to convert a print format onto a digital platform.
The Html, css and java is coded by me.</p>
</div>
<div class="project-details">
<h4>Client: Fagskolen Kristiania</h4>
<h4>Categories: Front-end development</h4>
<h4>Participant; ***</h4>
<h4>Role: Coder</h4>
<h4>Project type: Web design</h4>
</div>
</div>
</div>
</div>
<div class="contact">
<div class="contact-title">
<h2>Get in touch</h2>
</div>
<ul>
<li><a href="#"><h4>Mail</h4></a></li>
<li><a href="#"><h4>LinkedIn</h4></a></li>
<li><a href="#"><h4>Facebook</h4></a></li>
<li><a href="#"><h4>Instagram</h4></a></li>
</ul>
</div>
</main>
<footer>
<h3>2022 © design agency</h3>
</footer>
<script type="module" src="./js/app.js"></script>
</body>
</html>