-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhere.html
47 lines (42 loc) · 1.61 KB
/
where.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
<!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>Café Roua | Accueil</title>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" media="only screen and (max-width: 500px)" href="/css/style.mobile.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/4e855cac99.js" crossorigin="anonymous"></script>
<link rel="icon" href="https://www.google.com/s2/u/0/favicons?domain=css-tricks.com" type="image/png">
</head>
<body>
<header class="header">
<nav>
<h1>
<a href="/index.html">Roua's Coffee</a>
</h1>
<ul>
<li><a href="./index.html">Welcome</a></li>
<li><a class="active" href="./where.html">Find us</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
</header>
<section class="where">
<div class="container">
<img class=" where-img" src="./images/localisation.png" alt="map" srcset="">
<div class="where-text">
<h1 class="underline">Where you find us</h1>
<h3>Metro : Line <span class=" chip chip-purple ">4</span>- Menzah 9 , Line <span class=" chip chip-brown ">11</span> - Tunis</h3>
</div>
</div>
</section>
<footer>
<p>Copyright © --RK 2023</p>
</footer>
<!--Script-->
<script src="script.js"></script>
</body>
</html>