-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (58 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>heisann!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!--Responsive navbar-->
<header style="font-family: 'Courier New', Courier, monospace;">
<div class="logo">Linn Hjulstad</div>
<div class="hamburger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<nav class="nav-bar">
<ul>
<li>
<a href="" class="active">Home</a>
</li>
<li>
<a href="">CV</a>
</li>
<li>
<a href="">Portfolio</a>
</li>
<li>
<a href="">About me</a>
</li>
</ul>
</nav>
</header>
<script>
hamburger = document.querySelector(".hamburger");
hamburger.onclick = function() {
navBar = document.querySelector(".nav-bar");
navBar.classList.toggle("active");
}
</script>
<!--About me-->
</div>
<div style="font-family: 'Courier New', Courier, monospace; display: flex; flex-direction: column; align-items: center; padding: 50px;">
<img style="width: 250px; border-radius: 10px;" src="moo-deng.webp" alt="">
<h1>Hei!</h1>
<p style="text-align: center;">Moo deng er godt. Moo deng er en type kjøtt på Thai. I Thailand liker de å kalle kjæledyra sine etter mat</p>
<p>La oss ta en kopp matcha sammen!</p>
<p>[email protected]</p>
<p>+47 940 94 495</p>
<a href="https://github.com/linn-s-h">github</a>
<a href="https://www.linkedin.com/in/linn-srongyoo-hjulstad-406772251">linkdin</a>
</div>
<script src="" async defer></script>
</body>
</html>