-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavi.html
26 lines (21 loc) · 974 Bytes
/
navi.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
<!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> Navigation </title>
<link rel="stylesheet" href="/css/style.css" >
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap" rel="stylesheet">
</head>
<body class="navi">
<div class="header__menu-box">
<a href="index.html"> <img src="img/Burger Menu close.svg" alt="Menu" class="header__menu"> </a>
</div>
<ul class="navi-list">
<li href="das-cafe.html" class="navi-list-item heading-tertiary u-margin-bottom-big"> das Café </li>
<li href="die-herkunft.html" class="navi-list-item heading-tertiary u-margin-bottom-big"> Herkunft </li>
<li href="shop.html" class="navi-list-item heading-tertiary u-margin-bottom-big"> Shop </li>
</ul>
</body>
</html>