-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
45 lines (45 loc) · 2.56 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Raza About Us Page</title>
<link rel="stylesheet" href="./css files/styles.css">
</head>
<body bgcolor="#fad78a">
<div class="topnav" id="myTopnav">
<nav class="navigation">
<button class="toggle-button" onclick="toggleNav()">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</button>
<div class="logo-container" >
<img class="logo" src="./image files/logo.png" alt="Raza Restaurant Logo">
</div>
<a class="active" href="homepage.html" target="main_page">Home</a>
<a href="menu.html" target="main_page">Menu</a>
<a href="reservation.html" target="main_page">Reservations</a>
<a href="about.html" target="main_page">About</a>
<a href="contact.html" target="main_page">Contact us</a>
<a id="login-logout-link" href="login.html" target="main_page">Login</a>
</nav>
</div>
<div class="about">
<h1 style="text-align: center;">About</h1>
<div align="center">
<img src="./image files/logo.png" style="height: auto; max-width:100px; min-width:50px">
</div>
<h2 style="text-align: center; color:#b7410e;">Raza Restaurant</h2>
<div class="pic-container">
<img src="./image files/about cover.jpg" alt="Habesha person with coffee">
</div>
<h2 align="center">Wood Ave, Nairobi, Kenya,<br> Nairobi, Nairobi County</h2>
<div align="center">
<a href="https://www.google.com/maps/dir//raza+restaurant+locations/data=!4m6!4m5!1m1!4e2!1m2!1m1!1s0x182f10a380095749:0xca2cccfb751cb4ac?sa=X&ved=1t:3061&ictx=111" style=" font-size:x-large; text-decoration:none; color:black;" target="_blank" >(Google Map link)</a>
</div>
<p align="center" style="text-align: justify; margin:60px;">Welcome to Raza, your home for authentic Eritrean and Ethiopian cuisine in the heart of Nairobi. We are dedicated to bringing the rich, vibrant flavors of East Africa to your table, with dishes crafted from the finest ingredients and traditional recipes. Whether you're savoring our signature injera or enjoying a flavorful stew, we promise a dining experience that is both unique and unforgettable. Join us and discover the warmth of Eritrean and Ethiopian hospitality.</p>
</div>
<script src="./javascript files/index.js"></script>
</body>
</html>