-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreviews.html
73 lines (72 loc) · 3.91 KB
/
reviews.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
<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<!-- Defining keywords for search engine -->
<meta name="keywords" content="Best Indian Restaurant in Newport, KY, Indian Restaurant, Jot India, Amul India, Baba India,
Best indian Restaurant, Shan India, Taj India, Royal Taj, Taj Mahal Bar and Grill, Best Restaurant for Indian Food,
Indian Food Restaurant, Indian Dishes, Indian Carryout, Carryout, ToGo, Cheapest food service, High quality food,
Best Rated Indian Restaurant, Best Rated Restaurant">
<!-- Defining a description for website -->
<meta name="description" content="Authentic Indian Food">
<!-- Defining the author of the page -->
<meta name="author" content="Ujjwal Pandit">
<!-- Refreshing document every 30 seconds-->
<meta http-equiv="refresh" content="300">
<!-- Setting the viewport to make your website look good on all devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Title</title>
<link rel="stylesheet" href="styles.css">
<!-- For the navigation bar, we use bootstrap, so the css and js are below -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<!-- For the logos for the navigation bar, we use bootstrap as below -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet">
<!-- For the social media link we use fontawesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- For the slideshow animation, we are using w3schools css -->
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<script src="script.js"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a href="index.html" class="navbar-brand">
<img src="Images/jot%20india%20logo.png" height="28" alt="CoolBrand">
</a>
<button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarCollapse">
<div class="nav nav-tabs">
<a href="index.html" class="nav-item nav-link">
<i class="bi-house-door"></i> Home</a>
<a href="menu.html" class="nav-item nav-link">
<i class="bi bi-journal-text"></i> Menu</a>
<a href="https://www.yelp.com/biz/jot-india-restaurant-newport/" rel="noopener noreferrer" target="_blank" class="nav-item nav-link">
<i class="bi bi-hand-thumbs-up"></i> Reviews</a>
<a href="about.html" class="nav-item nav-link">
<i class="bi bi-palette2"></i> About Us</a>
<a href="gallery.html" class="nav-item nav-link">
<i class="bi bi-camera"></i> Gallery</a>
<a href="reservations.html" class="nav-item nav-link">
<i class="bi bi-calendar2-check"></i> Reservations</a>
<a href="faq.html" class="nav-item nav-link active" tabindex="-1">
<i class="bi bi-phone"></i> FAQs</a>
</div>
<div class="navbar-nav ms-auto">
<a href="#" class="nav-item nav-link">Login</a>
</div>
</div>
</div>
</nav>
<!--Section: FAQ-->
<section style="border: 2px solid green; padding: 30px">
<!--Let me get the APIs from Google Reviews and the Yelp Reviews-->
<strong>
<h2>This section of the website is under construction</h2>
</strong>
</section>
<!--Section: FAQ-->
</body>
</html>