forked from webstoryboy/webstandard2019
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample172_05.html
42 lines (35 loc) · 1.46 KB
/
sample172_05.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>layout05</title>
<style>
* {margin: 0; padding: 0;}
#wrap {width: 100%; height: 1000px; color:#fff; font-size: 30px; text-align: center; text-transform: uppercase; }
#header-wrap {width: 100%; background-color: #8d6e63;}
#banner-wrap {width: 100%; background-color: #a1887f;}
#content-wrap {width: 100%; background-color: #bcaaa4;}
#footer-wrap {width: 100%; background-color: #d7ccc8;}
.header-container {width: 1000px; height: 100px; line-height: 100px; margin: 0 auto; background-color: #3e2723;}
.banner-container {width: 1000px; height: 300px; line-height: 300px; margin: 0 auto; background-color: #4e342e;}
.content-container {width: 1000px; height: 500px; line-height: 500px; margin: 0 auto; background-color: #5d4037;}
.footer-container {width: 1000px; height: 100px; line-height: 100px; margin: 0 auto; background-color: #6d4c41;}
</style>
</head>
<body>
<div id="wrap">
<div id="header-wrap">
<div class="header-container">header</div>
</div>
<div id="banner-wrap">
<div class="banner-container">banner</div>
</div>
<div id="content-wrap">
<div class="content-container">content</div>
</div>
<div id="footer-wrap">
<div class="footer-container">footer</div>
</div>
</div>
</body>
</html>