-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (46 loc) · 2.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- HERO SECTION -->
<div class="hero-section">
<h1>Visit Kolkata</h1>
<h2>Enjoy culture and sports in this vibrant district close to the center of Oslo.</h2>
</div>
<!-- ACTIVITIES SECTION -->
<div class="activities-section">
<h3>Top three activities to do at Kolkata</h3>
<!-- Cointainer for our activities cards --->
<div id="activities-container">
<div class="places-card">
<img src="images/victoria.jpg">
<h4>Visit the historical Victoria Memorial</h4>
<p>Elegant domed shaped large marble building. It is dedicated to the memory of Queen Victoria </p>
</div>
<div class="places-card">
<img src="images/nicco.jpg">
<h4>Enjoy in the colorful nicco park</h4>
<p>Only one of it's kind of amusement park situated at kolkata.</p>
</div>
<div class="places-card">
<img src="images/parkstreet.jpg">
<h4>Enjoy a mesmerizing dinner at Park Street</h4>
<p>Park Street is a cosmopolitan area. A haven for food lovers and the most happening area in Kolkata.</p>
</div>
</div>
</div>
<!-- GUIDE SECTION -->
<div class="guide-section">
<div>
<img class="guide-img" src="images/per.jpg">
</div>
<div class="guide-about">
<h3>Your guide</h3>
<p>"I have lived at Torshov for over 30 years, so I can show you all of its best parts and hidden secrets."</p>
<h4>Per Harald Borgen</h4>
</div>
</div>
</body>
</html>