-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
52 lines (44 loc) · 2.09 KB
/
header.php
File metadata and controls
52 lines (44 loc) · 2.09 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Kinforma" />
<meta property="og:type" content="webbsite" />
<meta property="og:url" content="https://emmafredling.se/kinforma/" />
<meta property="og:image" content="https://emmafredling.se/kinforma/images/backpack/backpack-beige.jpg" />
<meta property="og:description"
content="A Lifestyle brand with focus on hiking gear.
School project with Yrgo classes DD, CG and WU" />
<title>Kinforma</title>
<link rel="stylesheet" href="css/style.css" />
<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=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet" />
</head>
<body>
<header>
<div class="header-inner">
<a href="index.php" class="logo">
<img src="logo/kinforma-logo.svg" alt="Företagsloggan">
</a>
<nav class="main-nav" aria-label="Huvudmeny">
<ul class="fade-in-menu">
<li class="item"><a href="">the gear</a></li>
<li class="item"><a href="">the hub</a></li>
<li class="item"><a href="">om oss</a></li>
<li class="item"><a href="">kontakt</a></li>
<li class="item"><a href="">SV | <span class="inactive-lang">EN</span></a></li>
</ul>
</nav>
<menu class="header-icons">
<li> <a href="#" class="cart" aria-label="Varukorg">[00]</a></li>
<button class="hamburger">
<img class="menu-icon" src="icons/menu-icon.svg" alt="Meny ikon">
<img class="close-icon" src="icons/close-icon.svg" alt="Stänga menyn">
</button>
</menu>
</div>
</header>