-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoodies.html
72 lines (62 loc) · 2.51 KB
/
foodies.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
<!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">
<title>The Ultimate Foodie Guide</title>
<link href="/styles.css" rel="stylesheet" />
</head>
<body>
<header class="hero container">
<h1>Food culture in Bangalore!</h1>
<img class="hero-img" src="/images/food.jpeg" />
</header>
<h2>For South Indian lovers, definitely check out these places</h2>
<ol>
<li>
<h3>MTR</h3>
<p>If you love dosas as much as I do and wake up on Sundays with insatiable cravings of Rava dosa then this
place might just be for you</p>
</li>
<li>
<h3>CTR</h3>
<p>Comfort South Indian food has never been better served and tasted than this classic heritage hotel in Malleshwaram</p>
</li>
<li>
<h3>Adigas</h3>
<p>All Bengalurians keep this place at the back of their heads when it comes to some quick breakfast that you can grab on the go</p>
</li>
</ol>
<h2>If you love Continental/Western Cuisine you'll definitely love these places</h2>
<ol>
<li>
<h3>Hard Rock Cafe</h3>
<p>The multi-national franchise has laid one of it's signature pubs in Bangalore if you're in it for some great food and drinks. From Burgers to pastas all your cravings will be satisfied</p>
</li>
<li>
<h3>Truffles</h3>
<p>A budget friendly delicious restaurant that has your Indian, Chinese and Italian cravings? No worries, Truffles has got your back at any corner of the city with is multiple outlets</p>
</li>
<li>
<h3>Smallys</h3>
<p>It's small, cute but big on the portions, check it out for yourself</p>
</li>
</ol>
<h2>If you've got a sweet tooth you, these are places you can't miss</h2>
<ol>
<li>
<h3>Corner House</h3>
<p>If you haven't had Bangalore's favorite dessert, The Death By Chocolate; my friend you are definitely missing out.</p>
</li>
<li>
<h3>KC Das</h3>
<p>Traditional Indian mithai that will take your taste buds to another planet. The rasgullas are to die for.</p>
</li>
<li>
<h3>Milano Ice-Cream</h3>
<p>Hands down the best gelato in Bangalore</p>
</li>
</ol>
</body>
</html>