-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
34 lines (34 loc) · 950 Bytes
/
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
<!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" />
<link rel="stylesheet" href="style.css" />
<title>Layout 01</title>
</head>
<body>
<header class="grid">
<h1>MariaR</h1>
<nav>
<a href="/">MENU</a>
<img src="./assets/images/Union.svg" alt="" />
</nav>
</header>
<main class="grid">
<p>Étoile • Excellence</p>
<h2>Créneau</h2>
<img src="./assets/images/Image.svg" alt="" />
</main>
<footer class="grid">
<div class="left">
<img src="./assets/images/4-dot.svg" alt="" />
<p>Show in grid</p>
</div>
<div class="right">
<img src="./assets/images/Left.svg" alt="" />
<img src="./assets/images/Right.png" alt="" />
</div>
</footer>
</body>
</html>