-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlayout.html
More file actions
57 lines (50 loc) · 1 KB
/
Copy pathlayout.html
File metadata and controls
57 lines (50 loc) · 1 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
56
57
<!DOCTYPE html>
<html>
<head>
<style>
body {
background-color: black;
margin: 0;
padding: 0;
}
header {
height: 200px;
background-color: blue;
}
#main {
height: 500px;
background-image: url('./Sir_Tim_Berners-Lee.jpeg');
}
footer {
height: 200px;
background-color: yellow;
}
h1, p {
margin: 0;
}
.hover-test:hover {
color: white;
}
#main p {
color: green;
}
</style>
</head>
<body>
<header>
<h1 class="hover-test">여기는 헤더 입니다.</h1>
</header>
<div id="main">
<p>여기는 메인 입니다.</p>
<div id="box1" style="height: 100px;">
<p>여기는 box1 입니다.</p>
</div>
<div id="box2" style="height: 100px;">
<p>여기는 box2 입니다.</p>
</div>
</div>
<footer>
<p>여기는 푸터 입니다.</p>
</footer>
</body>
</html>