-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcafe.html
More file actions
92 lines (74 loc) · 3.14 KB
/
cafe.html
File metadata and controls
92 lines (74 loc) · 3.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Delhi Lounge - Restaurant</title>
<link rel="stylesheet" href="cafe.css">
</head>
<script src="cafe.js"></script>
<body>
<nav>
<h1>Coffe Breeze</h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#menu">Menu</a></li>
<li><a href="#gallery">Gallery</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
<header id="home" class="hero">
<h2>Authentic Indian Dining Experience</h2>
<p>Delight in the flavors of India with our exquisite menu, cozy ambiance, and exceptional service.</p>
</header>
<section id="menu" class="content-section">
<h2>Our Menu</h2>
<p>Explore a variety of traditional Indian dishes, from rich curries to freshly baked naan.</p>
<!-- Clickable PDF Thumbnail -->
<a href="menu.pdf" id="menu-link">
<img src="menu.jpeg" alt="Delhi Lounge Menu">
</a>
<!-- Lightbox for PDF -->
<div id="pdf-lightbox" class="lightbox">
<div class="lightbox-content">
<span class="close-btn">×</span>
<div class="pdf-container">
<iframe class="pdf-viewer" id="pdf-viewer" src="menu.pdf#toolbar=0&navpanes=0&scrollbar=0"></iframe>
</div>
</div>
</div>
</section>
<section id="gallery" class="gallery-images">
<h2>Gallery</h2>
<div class="gallery-container">
<img src="res4.jpg" data-src="res4.jpg" alt="Gallery Image 1" >
<img src="res3.jpg" data-src="res3.jpg" alt="Gallery Image 2" >
<img src="res5.jpg" data-src="res5.jpg" alt="Gallery Image 3" >
<img src="res6.jpg" data-src="res6.jpg" alt="Gallery Image 4" >
<img src="res7.jpg" data-src="res7.jpg" alt="Gallery Image 5" >
<img src="res8.jpg" data-src="res8.jpg" alt="Gallery Image 5" >
</div>
<!-- Lightbox Modal -->
<div id="lightbox" class="lightbox">
<span class="close">×</span>
<span class="prev">❮</span> <!-- Previous Button -->
<img class="lightbox-content" id="lightbox-img">
<span class="next">❯</span> <!-- Next Button -->
<!-- Dots Indicator -->
<div class="dots-container"></div>
</div>
</section>
</section>
<section id="contact" class="content-section">
<h2>Contact & Location</h2>
<p>📍 123 Delhi Street, City, Country</p>
<p>📞 +123 456 789</p>
<p>🕒 Open Daily: 11 AM - 10 PM</p>
<a href="https://maps.google.com" class="btn">Find Us on Maps</a>
<a href="#" class="btn">Make a Reservation</a>
</section>
<footer>
<p>© 2025 Delhi Lounge. All Rights Reserved.</p>
</footer>
</body>
</html>