-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhvor.html
More file actions
30 lines (30 loc) · 1.43 KB
/
hvor.html
File metadata and controls
30 lines (30 loc) · 1.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hvor - My Website</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Nunito:wght@300;400;700&display=swap" rel="stylesheet">
<link rel="icon" href="images/favicon.svg" type="image/svg+xml">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="sidebar">
<ul>
<li><a href="index.html">Info</a></li>
<li><a href="hvor.html" class="active">Hvor</a></li>
<li><a href="kontakt.html">Kontakt</a></li>
</ul>
</div>
<div class="main-content">
<h1>Our Location near Grorudparken</h1>
<p>Pinpointing our spot! Here's a map showing our precise location near Grorudparken, Oslo:</p>
<iframe src="https://maps.google.com/maps?q=59.957053,10.877278&hl=en&z=15&output=embed" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
<p><small>Note: This map shows our specific location at coordinates 59.957053, 10.877278.</small></p>
</div>
</div>
</body>
</html>