-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (65 loc) · 1.94 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<html>
<head>
<meta name="viewport" content = "width=device-width, " initial-scale=1.0">
<title>Singapore</title>
<!-- linking css file -->
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- this is whole page this container -->
<div class="container">
<div class="navbar">
<img
src="https://iconape.com/wp-content/png_logo_vector/singapore-lion-logo.png"
alt="logo"
class="logo"
/>
<nav>
<ul>
<li><a href="">About</a></li>
<li><a href="">Travel</a></li>
<li><a href="">Contact</a></li>
</ul>
</nav>
<img
src="https://icon-library.com/images/white-menu-icon/white-menu-icon-0.jpg"
class="menu-icon"
/>
</div>
<div class="row">
<div class="col">
<h1>Singapore</h1>
<p>
Singapore, city-state located at the southern tip of the Malay
Peninsula, about 85 miles (137 kilometres) north of the Equator. It
consists of the diamond-shaped Singapore Island and some 60 small
islets; the main island occupies all but about 18 square miles of
this combined area.
</p>
<button type="button">Explore</button>
</div>
<div class="col"></div>
<div class="card card1">
<h5>Chagi Airport</h5>
<p>I will go there</p>
</div>
<div class="card card2">
<h5>Garden by the Bay</h5>
<p>I will go there</p>
</div>
<div class="card card3">
<h5>City Walk</h5>
<p>I will go there</p>
</div>
<div class="card card4">
<h5>Lion</h5>
<p>Coming Soon</p>
</div>
</div>
</div>
</body>
</html>