-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
65 lines (57 loc) · 2.59 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
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
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/mobile.css">
<title>Document</title>
</head>
<body>
<header>
<section class="icons">
<a href="https://github.com/santiagovOK" title="My GitHub profile " rel="noopener" target="_blank"><img src="assets/icons/github-icon.svg" alt="My GitHub Profile"></a>
</section>
</header>
<main>
<section class="hero">
<div class="info">
<h1 class="info-title">Check the<br>best food</h1>
<p class="info-subtitle">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.</p>
<button class="info-button">Book a table</button>
</div>
<img class="hero-image" src="./assets/hero.png" alt="Pasta and vegetable dish">
</section>
<section class="dishes">
<h2 class="dishes-title">Our services</h2>
<div class="dishes-grid">
<img class="dishes-item dishes-item__big" src="./assets/video.png" alt="A table with pasta dishes">
<img class="dishes-item" src="assets/dish1.png" alt="Vegetable Bowl">
<img class="dishes-item" src="assets/dish2.png" alt="Vegetable Bowl">
<img class="dishes-item" src="assets/dish3.png" alt="Vegetable Bowl">
<img class="dishes-item" src="assets/dish4.png" alt="Vegetable Bowl">
</div>
</section>
<section class="menu">
<h2 class="menu-title"> Home menu</h2>
<div class="menu-grid">
<div class="menu-grid-item">
<img src="assets/plate1.png" alt="Pasta dish with sauce and vegetables">
</div>
<div class="menu-grid-item">
<img src="assets/plate2.png" alt="Pasta dish with sauce and vegetables">
</div>
<div class="menu-grid-item">
<img src="assets/plate3.png" alt="Pasta dish with sauce and vegetables">
</div>
<div class="menu-grid-item">
<img src="assets/plate4.png" alt="Pasta dish with sauce and vegetables">
</div>
<div class="menu-grid-item">
<img src="assets/plate5.png" alt="Pasta dish with sauce and vegetables">
</div>
</div>
</section>
</main>
</body>
</html>