-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (45 loc) · 1.42 KB
/
index.html
File metadata and controls
55 lines (45 loc) · 1.42 KB
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
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
<meta charset="utf-8">
<style>
h1 {
font-size: 64px;
text-align: center;
}
h3 {
margin-top: 100px;
}
p i {
font-size: 48px;
}
.big-blue-text {
font-size: 64px;
color:slateblue;
}
.centered-text {
text-align: center;
}
#best-text {
color: orange;
}
</style>
</head>
<body>
<h1 class="centered-text"><i>My First Page</i></h1>
<h2 class="big-blue-text centered-text">I love HTML!</h2>
<h3>한국말로 <i>고칩니다.</i></h3>
<img src="images/pawel-czerwinski-nyJY9UZnkrE-unsplash.jpg"
width="25%">
<p><strong>Hello World....</strong> <b>it's just test!</b></p>
<p id="best-text">첫 번째 문단</p>
<p>두 번째 문단</p>
<p class="big-blue-text">세 번째 문단</p>
<p>네 번째 문단</p>
<a href="https://google.com" target="_blank">구글로 가는 링크</a>
<a href="folder1/page1.html">page 1</a>
<a href="folder1/folder2/page2.html">page 2</a>
<a href="folder1/folder2/page3.html">page 3</a>
</body>
</html>