본문 바로가기
Front-end/HTML+CSS

웹디자인기능사 와이어프레임 구축 연습(B-3. 세계의 미술작품)

by 타이거진 2023. 2. 18.

B-3. 세계의 미술작품

 

<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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="./css/style.css">
    <title>세계의 미술작품</title>
</head>
<body>
<div id="wrap">
    <header id="header">
        <div id="logo">
            로고
        </div>
        <nav id="nav">
            네비게이션
        </nav>
    </header> 
    <div id="slide">
        슬라이드
    </div>
    <div id="contents">
        <div id="notice">공지사항</div>
        <div id="gall">갤러리</div>
        <div id="ban">배너</div>
    </div>
    <div id="footer">
    <div id="logo">로고</div>
    <div id="copyright">copyright</div>
    <div id="sns">sns</div>
    </div>
</div>
</body>
</html>
cs

 

 

<css 코드>

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
76
77
78
79
80
81
82
83
84
85
86
87
@charset "utf-8";
*{
    margin:0;
    padding:0;
}
ul{
    list-style-type: none;
}
a{
    text-decoration: none;
}
#wrap{
    width:1200px;
    height:700px;
    background-color: aqua;
    margin:0 auto;
    /*가운데 정렬*/
}
#header{
    display:inline-block;
    width:1200px;
    height:100px;
    background-color: aquamarine;
}
#header>#logo{
    float:left;
    width:200px;
    height:100px;
    background-color: coral;
}
#header>#nav{
    float:left;
    width:1000px;
    height:100px;
    background-color: cornflowerblue;
}
#slide{
    width:1200px;
    height:300px;
    background-color: chartreuse;
}
#contents{
    width:1200px;
    height:200px;
    background-color: burlywood;
}
#contents>#notice{
    float:left;
    width:480px;
    height:200px;
    background-color: darkcyan;
}
#contents>#gall{
    float:left;
    width:360px;
    height:200px;
    background-color: darkgoldenrod;
}
#contents>#ban{
    float:left;
    width:360px;
    height:200px;
    background-color: darkkhaki;
}
#footer{
    width:1200px;
    height:100px;
    background-color: chocolate;
}
#footer>#logo{
    float: left;
    width:200px;
    height:100px;
    background-color: gray;   
}
#footer>#copyright{
    float: left;
    width:800px;
    height:100px;
    background-color: pink;   
}
#footer>#sns{
    float: left;
    width:200px;
    height:100px;
    background-color: thistle;   
}
cs

 

<구현 화면>