-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (58 loc) · 1.73 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>
<head>
<meta charset="UTF-8">
<title>
My test Page
</title>
<style>
a {
color:black;
text-decoration: none;
text-align: left;
}
.saw {
color:gray;
}
.active {
color:red;
}
h1 {
font-size:45;
text-align: center;
border-bottom:1px solid gray;
margin:0;
padding:20px;
}
ol {
border-right:1px solid gray;
width:100px;
margin:0;
padding:20px;
}
p {
border-top:1px solid gray;
margin:0;
padding:20px;
}
</style>
</head>
<body>
<h1>
<a href="index.html">Test HTML</a>
</h1>
<ol>
<li><a href="https://www.naver.com/" target="_blank" class="saw">Naver</a></li>
<li><a href="https://google.com/" target="_blank" class="saw">Google</a></li>
<li><a href="https://www.yahoo.com/" target="_blank" class="saw">Yahoo</a></li>
</ol>
<ol>
<li><a href="st2.html">st2</a></li>
<li><a href="st3.html">st3</a></li>
<li><a href="st4.html">st4</a></li>
</ol>
<p>
<img src="https://media.istockphoto.com/id/1026126552/vector/cute-cartoon-black-cat.jpg?s=612x612&w=0&k=20&c=07EN4ZpdYKdz-C99QjUYvpZ_xk974o4eLnV7cyCO7dg=" style="text-align:center">
</p>
</body>
</html>