-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest16.html
More file actions
75 lines (72 loc) · 1.63 KB
/
Copy pathtest16.html
File metadata and controls
75 lines (72 loc) · 1.63 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.container{
width: 1200px;
border: 1px solid red;
}
header{
height: 150px;
background-color: lightblue;
}
header article{
width: 300px;
height: 100px;
margin: 25px;
}
.logo{
background-color: lightgreen;
float: left;
}
.navi{
background-color: lightyellow;
float: right;
}
.box1{
height: 300px;
background-color: violet;
}
.box2{
height: 300px;
background-color: violet;
}
.box2 article{
width: 400px;
height: 300px;
float: left;
}
.sub1{
background-color: red;
}
.sub2{
background-color: green;
}
.sub3{
background-color: blue;
}
footer{
height: 150px;
background-color: lightblue;
}
</style>
</head>
<body>
<!-- 레이아웃 와이어프레임 작성 -->
<div class="container">
<header>
<article class="logo"></article>
<article class="navi"></article>
</header>
<section class="box1"></section>
<section class="box2">
<article class="sub1"></article>
<article class="sub2"></article>
<article class="sub3"></article>
</section>
<footer></footer>
</div>
</body>
</html>