-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (71 loc) · 2.48 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
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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="icon" type="image/png" href="/sushi.png"/>
<link rel="stylesheet" href="./css/style.css"/>
<title>SushiBar</title>
</head>
<body>
<header>
<nav class="header__nav">
<div class="header__logo">
<h4>BibimbapBistro</h4>
<div class="header__logo-overlay"></div>
</div>
<ul class="header__menu">
<li class="header__menu-item"><a href="#menu">Menu</a></li>
<li class="header__menu-item"><a href="#food">Food</a></li>
<li class="header__menu-item"><a href="#services">Services</a></li>
<li class="header__menu-item"><a href="#about-us">About</a></li>
<li class="header__menu-item"><img src="./assets/search.svg" alt="search"/></li>
</ul>
<ul class="header__menu-mobile">
<li>
<img src="./assets/menu.svg" alt="menu"/>
</li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-image">
<img
src="./assets/sushi-1.png"
alt="sushi"
/>
<h2>
日<br/>
本<br/>
食
</h2>
<div class="hero-image__overlay"></div>
</div>
<div class="hero-content">
<div class="hero-content-info">
<h1>Feel the taste of Japanese food</h1>
<p>Feel the taste of the most popular Japanese food from anywhere and anytime.</p>
<div class="hero-content__buttons">
<button class="hero-content__order-button">Order Now</button>
<button class="hero-content__play-button">
<img src="./assets/play-circle.svg" alt="play"/>
How to Order
</button>
</div>
</div>
<div class="hero-content__testimonial">
<div class="hero-content__customer flex-center">
<h4>24<span>k+</span></h4>
<p>Happy Customers</p>
</div>
<div class="hero-content__review">
<img src="./assets/user.png" alt="user"/>
<p>"This is the best Japanese food delivery service that ever existed."</p>
</div>
</div>
</div>
</section>
<script src="./js/script.js" type="module"></script>
</body>
</html>