-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.html
62 lines (61 loc) · 1.63 KB
/
home.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
61
62
<!DOCTYPE html>
<html lang="kr">
<head>
<title>The Nico Times</title>
<link rel="stylesheet" href="styles.css">
<meta charset="utf-8"/>
<meta name="Description" content="This is my web site"/>
<style>
*{
border: 1px dashed black;
}
html{
background-color: tomato;
}
body{
margin: 0;
background-color: pink;
padding: 20px 10px;
}
div{
border: 2px inset black;
padding: 10px;
}
span{
display: block;
background-color:aquamarine ;
}
#first{
background-color: whitesmoke;
height: 150px;
width: 150px;
}
#second{
background-color: teal;
height: 100px;
width: 100px;
}
#third{
background-color:wheat ;
height: 50px;
width: 50px;
}
#fourth{
background-color: blanchedalmond;
height: 25px;
width: 25px;
}
</style>
</head>
<body>
<div id="first">
<div id="second">
<div id="third">
<div id="fourth">
<span>Hi</span>
</div>
</div>
</div>
</div>
</body>
</html>