-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
149 lines (149 loc) · 6.56 KB
/
Copy pathabout.php
File metadata and controls
149 lines (149 loc) · 6.56 KB
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" href="assets/images/logo.png" type="image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/main.css">
<title>Sakura Restaurant | About us</title>
</head>
<body>
<!-- Header -->
<nav>
<div class="header">
<img src="assets/images/logo.png" alt="logo">
<div class="nav-desktop">
<div class="icon-cart">
<a href="preorder.php">
<img src="assets/svg/pre-order.svg" alt="cart">
<span id="cart-count">0</span>
</a>
</div>
<div class="listProduct"></div>
<div class="listCart"></div>
<div class="links">
<ul>
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="about.php">About</a>
</li>
<li>
<a href="menu.php">Menu</a>
</li>
<li>
<a href="reservation.php">Reservation</a>
</li>
<li>
<a href="#footer">Contact Us</a>
</li>
<li>
<a href="auth/loginform.php">Staff</a>
</li>
</ul>
</div>
</div>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
<div class="nav-mobile">
<div class="links">
<ul>
<li>
<a href="index.php">Home</a>
</li>
<li>
<a href="about.php">About</a>
</li>
<li>
<a href="menu.php">Menu</a>
</li>
<li>
<a href="reservation.php">Reservation</a>
</li>
<li>
<a href="#footer">Contact Us</a>
</li>
<li>
<a href="auth/loginform.php">Staff</a>
</li>
<a href="preorder.php">
<img src="assets/svg/pre-order.svg" alt="preorder">
</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<!-- About Us Page-->
<!-- <div class="title">
<h1>About Us</h1>
<div class="line"></div>
</div> -->
<br>
<br>
<br>
<div class="about about-abtt">
<div class="image">
<img src="assets/images/about/aboutus.png" alt="aboutus">
</div>
<div class="content">
<div>
<h1>Sakura Restaurant</h1>
<div class="line-abt"></div>
</div>
<p>Sakura Restaurant was born from a love of authentic Japanese flavors and a desire to bring the warmth of Japanese hospitality to every table. Named after the cherry blossoms that symbolize renewal and beauty, we set out to create a dining space where tradition meets modern craft.</p>
<p>Our menu features a wide variety of Japanese dishes — from traditional ramen and katsudon to seasonal appetizers and curated drinks — providing a diverse culinary experience that celebrates both simplicity and depth of flavor.</p>
<p>We pride ourselves on using high-quality ingredients and traditional cooking methods to ensure that every dish is a true representation of Japanese flavors. Our talented chefs are passionate about creating mouthwatering meals that not only taste amazing but also look stunning on the plate.</p>
</div>
</div>
<div class="about about-abt">
<div class="image">
<img src="assets/images/about/loc.png" alt="aboutus">
</div>
<div class="content">
<div>
<h1>Location</h1>
<div class="line-abt"></div>
</div>
<p>123 Cherry Blossom Ave, Makati City, Metro Manila</p>
</div>
</div>
<!-- Footer -->
<div class="footer" id="footer">
<div class="main">
<img class="logo" src="assets/images/logo.png" alt="logo">
<div class="one">
<h1>Sakura Restaurant</h1>
<p> A restaurant that offers a comfortable atmosphere and diverse selection of delectable Japanese dishes that people can enjoy.</p>
</div>
<div class="two">
<h1>Contact Us</h1>
<p>Contact Number: +63 2 8888 0000</p>
<p>Opening Hours: Mon–Sun: 11:00 AM – 10:00 PM</p>
<p>Address: 123 Cherry Blossom Ave, Makati City, Metro Manila</p>
</div>
<div class="three">
<a href="#">
<img src="assets/images/social/fb.png" alt="fb">
</a>
<a href="#">
<img src="assets/images/social/ig.png" alt="ig">
</a>
<a href="#">
<img src="assets/images/social/tt.png" alt="tt">
</a>
<p> A Restaurant that offers a welcoming atmosphere and Traditional Japanese Cusines</p>
</div>
</div>
</div>
<div class="copyright">
Copyright © Sakura Restaurant | All Rights Reserved | Designed by QWERTY
</div>
<script src="assets/js/main.js"></script>
</body>
</html>