-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (110 loc) · 3.61 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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/svg+xml" href="/vite.svg" />
<link rel="icon" type="image/png" href="/sushi.png" />
<title>Ginza Onodera</title>
<link rel="stylesheet" href="/css/style.css" />
</head>
<body>
<header>
<nav class="header__nav">
<div class="header__logo">
<h4 data-aos="fade-down">Ginza Onodera</h4>
<div class="header__logo-overlay"></div>
</div>
<ul class="header__menu" data-aos="fade-down">
<li>
<a href="#menu">Menu</a>
</li>
<li>
<a href="#food">Food</a>
</li>
<li>
<a href="#services">Services</a>
</li>
<li>
<a href="#about-us">About us</a>
</li>
<li>
<img src="assets/search.svg" alt="search" />
</li>
</ul>
<ul class="header__menu-mobile" data-aos="fade-down">
<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="" data-aos="fade-up" />
<h2>
日 <br />
本 <br />
食
</h2>
<div class="hero-image__overlay"></div>
</div>
<div class="hero-content">
<div class="hero-content-info" data-aos="fade-left">
<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="" />
How to order
</button>
</div>
</div>
<div class="hero-content__testimonial" data-aos="fade-up">
<div class="hero-content__customer flex-center">
<h4>24<span>4k+</span></h4>
<p>Happy Customers</p>
</div>
<div class="hero-content__review">
<img src="assets/user.png" alt="" />
<p>
"This is the best Japanese food delivery service that ever
existed."
</p>
</div>
</div>
</div>
</section>
<section class="about-us" id="about-us">
<div class="about-us__image">
<div class="about-us__image-sushi3">
<img src="assets/sushi-3.png" alt="" data-aos="fade-right" />
</div>
<button class="about-us__button">
Learn more
<img src="assets/arrow-up-right.svg" alt="" />
</button>
<div class="about-us__image-sushi2">
<img src="assets/sushi-2.png" alt="" data-aos="fade-right" />
</div>
</div>
<div class="about-us__content" data-aos="fade-left">
<p class="sushi__subtitle">About Us / 私たちに関しては</p>
<h3 class="sushi__title">
Our mission is to bring true Japanese flavours to you
</h3>
<p class="sushi__description">
We will continue to provide the experience of Omotenashi, the Japanese
mindset of hospitality, with our shopping and dining for our
customers.
</p>
</div>
</section>
<script src="/js/script.js" type="module"></script>
</body>
</html>