-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.htm
133 lines (124 loc) · 4.5 KB
/
menu.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menu</title>
<link rel="stylesheet" href="menu.css">
<link rel="stylesheet" href="mobile.css" media="screen and (max-width: 1109px)">
<link rel="stylesheet" href="smaller_mobile.css" media="screen and (max-width: 637px)">
<link rel="stylesheet" href="android.css" media="screen and (max-width: 540px)">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>
</head>
<body>
<!-- navigation -->
<nav class="navbar">
<img src="./imag/LOGo.png" alt="" class="logo">
<ul class="nav-links">
<li class="active"><a href="index.html">Home</a</li>
<li><a href="menu.htm">Menu</a></li>
<li><a href="location.htm">Locations</a></li>
<li><a href="Voucher.htm">Gift Vouchers</a></li>
<a href="contact_us.htm" class="cta"><button class="contact">Contact</button></a>
</ul>
</nav>
<div class="right-section">
<div class="list-cards">
<!--1-->
<div class="list-card">
<section>
<h1>Espresso</h1>
<p>An Intensely flavored, concentrated coffee shot with a velvety texture.</p>
<span class="price">Rs 120</span>
</section>
<section>
<img src="imag/Espresso.jpg" alt="Espresso" class="imag">
</section>
</div>
<!--2-->
<div class="list-card">
<section>
<h1>Latte</h1>
<p>Espresso mixed with steamed milk, topped with foam for a creamy texture.</p>
<span class="price">Rs 170</span>
</section>
<section>
<img src="imag/latte.jpg" alt="Espresso" class="imag">
</section>
</div>
<!--3-->
<div class="list-card">
<section>
<h1>Cappucino</h1>
<p> Espresso, steamed milk, and foam combined for a creamy, frothy coffee experience.</p>
<span class="price">Rs 190</span>
</section>
<section>
<img src="imag/Cappucino.jpg" alt="Espresso" class="imag">
</section>
</div>
<!--4-->
<div class="list-card">
<section>
<h1>Machiato</h1>
<p>Espresso "stained" with a dash of steamed milk for a bold yet creamy flavor.</p>
<span class="price">Rs 180</span>
</section>
<section>
<img src="imag/Machiato.jpg" alt="Espresso" class="imag">
</section>
</div>
<!--5-->
<div class="list-card">
<section>
<h1>French Press</h1>
<p> Coarse coffee grounds steeped in hot water, then pressed for a robust brew.</p>
<span class="price">Rs 160</span>
</section>
<section>
<img src="imag/frenchPress.jpg" alt="Espresso" class="imag">
</section>
</div>
</div>
<footer class="footer">
<div class="inner">
<div class="column is-logo">
<a href="index.html" class="main-logo">
<div class="logo">
<img src="./imag/Asset 11.png" id="hataueslai" alt="stackfindover">
</div>
<div class="logo-info">
<div class="text">Kathmandu Koffee Klatch</div>
<span class="copyright">© 2021. All rights reserved.</span>
</div>
</a>
</div>
<div class="column is-nav">
<div class="column-title">Navigation</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="menu.htm">Menu</a></li>
<li><a href="contact_us.htm">Contact Us</a></li>
</ul>
</div>
<div class="column is-nav">
<div class="column-title">Contact</div>
<ul>
<li><a href="#"><i class="fa fa-envelope-open"></i>[email protected]</a></li>
<li><a href="#"><i class="fa fa-twitter"></i>@twtktmklatch</a></li>
<li><a href="#"><i class="fa fa-linkedin"></i>@linkedktmkatch</a></li><br>
</ul>
<div class="column is-nav">
<div class="column-title">Location</div>
<ul>
<li><a href="#">Patan Durbar Square</a></li>
</ul>
</div>
</div>
</footer>
</body>
</html>