-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (96 loc) · 2.95 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
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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>Malaysia Tourism</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="">
<meta property="og:type" content="">
<meta property="og:url" content="">
<meta property="og:image" content="">
<link rel="icon" href="/favicon.ico" sizes="any">
<link rel="icon" href="/icon.svg" type="image/svg+xml">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="manifest" href="site.webmanifest">
<meta name="theme-color" content="#fafafa">
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="img/Flag_of_Malaysia.svg" alt="Logo">
<h1>Tourism Website</h1>
</div>
<button class="menu-toggle" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<ul class="menu">
<li><a href="#main">Home</a></li>
<li><a href="#table">Tours</a></li>
<li><a href="#form">Contact</a></li>
</ul>
</nav>
</header>
<main id="main">
<div class="main-content">
<h1>Discover Malaysia</h1>
<p>Welcome to Malaysia, a melting pot of cultures and stunning nature.</p>
</div>
<div class="main-image">
<img src="img/malaysia.svg" alt="Malaysia Landscape">
</div>
</main>
<section id="popular-destinations">
<h2>Popular Destinations</h2>
<table>
<caption>List of popular tourist destinations in Malaysia</caption>
<thead>
<tr>
<th scope="col">Destination</th>
<th scope="col">Attractions</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kuala Lumpur</td>
<td>Petronas Twin Towers, Batu Caves</td>
</tr>
<tr>
<td>Penang</td>
<td>George Town, Penang Hill</td>
</tr>
<tr>
<td>Langkawi</td>
<td>Cable Car, SkyBridge</td>
</tr>
</tbody>
</table>
<section id="contact">
<h2>Contact Us</h2>
<form action="#" method="post" aria-labelledby="contact-heading" role="form">
<div class="form-group">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
</div>
<div class="form-group">
<label for="message">Message:</label>
<textarea id="message" name="message" rows="5" required></textarea>
</div>
<div class="form-group">
<button type="submit">Send</button>
</div>
</form>
</section>
<script src="js/vendor/modernizr-3.12.0.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>