-
Notifications
You must be signed in to change notification settings - Fork 217
/
combo_1.html
79 lines (65 loc) · 2.77 KB
/
combo_1.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
<!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" href="https://img-premium.flaticon.com/png/512/4594/premium/4594828.png?token=exp=1633490558~hmac=787a7e8f464c8daf3b270f60d5241cfd" />
<title>Sneha's Cafe Speacial Combo</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<div class="logo" onclick="sendToHome()">Modern Cafe</div>
<div class="toggle"></div>
<div class="navigation">
<ul>
<li><a href="index.html" class="underLine">Home</a></li>
<li><a href="dishes.html" class="underLine">Dishes</a></li>
<li><a href="combo.html" class="underLine">Our Special Combo</a></li>
<li><a href="contact.html" class="underLine">Contact</a></li>
<li><a href="review.html" class="underLine">Customer Reviews</a></li>
</ul>
<!-- <div class="social-bar">
<ul>
<li>
<a href="https://facebook.com">
<img src="images/facebook.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://twitter.com">
<img src="images/twitter.png" target="_blank" alt="" />
</a>
</li>
<li>
<a href="https://instagram.com">
<img src="images/instagram.png" target="_blank" alt="" />
</a>
</li>
</ul>
<a href="mailto:you@email.com" class="email-icon">
<img src="images/email.png" alt="" />
</a>
</div> -->
</div>
</header>
<!-- Dark Mode -->
<div align="right">
<img class="btn-dark" src="https://img.icons8.com/ios-filled/40/000000/sun.png" onclick="dark()" />
</div>
<section class="home">
<img src="images/InShot_20210327_035901232.jpg" class="home-img" alt="Pizza And Burger Combo" />
<div class="home-content">
<h1>
Pizza And Burger Combo
</h1>
<p>
You will get a burger(Veg or Non-Veg as per<br> your choice + A medium size Pizza<br> You can select anyone from the following list.<br> Cheese Burst with Capsicum<br> Simple Capsicum<br> Fresh Tomatoes<br> Corn Pizza with Extra Cheese.
</p>
<a href="#" class="btn">Order Now</a>
</div>
</section>
<script src="js/script.js"></script>
</body>
</html>