forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththai.html
42 lines (36 loc) · 834 Bytes
/
thai.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Thai language for Helloworld</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<style>
body{
margin: 0;
}
h1 {
font-size: 7vh;
text-align: center;
}
h2 {
font-size: 2vh;
text-align: center;
color: gray;
}
main {
min-height: 100vh;
justify-content: center;
display: flex;
flex-flow: column;
}
</style>
<body>
<main>
<h1>สวัสดีโลก <br> Sa-wat-dee-lok</h1>
<h2>Thai pronunciation for Hello World</h2>
<h3>เรามาจากประเทศไทย : We are from Thailand</h3>
</main>
</body>
</html>