-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Malaysia</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 40px;
background-color: #f5f6fa;
color: #2c3e50;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: white;
padding: 30px;
border-radius: 10px;
box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
text-align: center;
border-bottom: 2px solid #3498db;
padding-bottom: 10px;
margin-bottom: 30px;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px 0;
padding: 10px;
background-color: #f8f9fa;
border-left: 4px solid #3498db;
border-radius: 4px;
}
p {
text-align: center;
font-size: 1.1em;
margin-bottom: 25px;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Malaysia</h1>
<p>Malaysia is a beautiful country in Southeast Asia known for its:</p>
<ul>
<li>Diverse culture</li>
<li>Amazing food</li>
<li>Beautiful landscapes</li>
</ul>
</div>
</body>
</html>