-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathindex_hope.html
48 lines (46 loc) · 1.01 KB
/
index_hope.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>인도네시아어 배우기</title>
<style>
h1 {
padding:30px;
background:lightblue;
}
h2, h1{
text-align:center;
}
.word{
background-color: beige;
margin: 10px;
}
.bahasa{
color:black;
font-weight:bold;
}
</style>
</head>
<body>
<h1>Bahasa indonesia</h1>
<h2>기본 인사</h2>
<div class = "word">
<div class = "bahasa">
Helo
</div>
<div class = "korean">
안녕하세요
</div>
</div>
<div class = "word">
<div class = "bahasa">
Apa kabar
</div>
<div class = "korean">
어떻게 지내세요
</div>
</div>
</body>
</html>