-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (27 loc) · 1.07 KB
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link href="https://fonts.googleapis.com/css?family=Playfair+Display:400i&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./style.css" />
<script src="./app.js" defer></script>
<title>Restoran</title>
</head>
<body>
<div id="title" class="title">
<a class="title__link" href="#">Coffee</a>
<a class="title__link" href="#">Food</a>
<a class="title__link" href="#">Drinks</a>
</div>
<div class="hero-wrapper">
<div id="hero" class="hero">
<img class="hero__img opaque" src="./img/hero-img.jpg" alt="Main image" />
<img class="hero__img" src="./img/hero-img2.jpg" alt="Main image" />
<img class="hero__img" src="./img/hero-img3.jpg" alt="Main image" />
<img class="hero__img" src="./img/hero-img4.jpg" alt="Main image" />
</div>
</div>
</body>
</html>