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

웹디자인기능사 와이어프레임 구축 연습(A-2. Green 복지재단)

by 타이거진 2023. 2. 18.

A-2. Green 복지재단

 

<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="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>Green 복지재단</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="cont1">콘텐츠1</div>
            <div id="cont2">콘텐츠2</div>
            <div id="cont3">콘텐츠3</div>
         </div>
         <footer id="footer">
            <div id="logo">로고</div>
            <div id="copyright">카피라이트</div>
            <div id= "famsite">패밀리사이트</div>
         </footer>
    </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
@charset "utf-8";
 
*{
    list-style-type: none;
}
a{
text-decoration: none;
}
 
#wrap{
    width:1200px;
    height:700px;
    background-color: aqua;
    margin:0 auto;
}
#header{
    width:1200px;
    height:100px;
    background-color: aquamarine;
}
#header>#logo{
    float: left;
    width: 200px;
    height: 100px;
    background-color: azure;
}
#header>#nav{
    float: left;
    width: 1000px;
    height: 100px;
    background-color: bisque;
}
#slide{
    width:1200px;
    height:300px;
    background-color: antiquewhite;
}
#contents{
    width:1200px;
    height:200px;
    background-color: brown;
}
#contents>#cont1{
    float: left;
    width: 480px;
    height: 200px;
    background-color: darkcyan;
}
#contents>#cont2{
    float: left;
    width: 360px;
    height: 200px;
    background-color: darkgoldenrod;
}
#contents>#cont3{
    float: left;
    width: 360px;
    height: 200px;
    background-color: darkkhaki;
}
#footer{
    width:1200px;
    height:100px;
    background-color: blueviolet;
}
#footer>#logo{
    float: left;
    width: 200px;
    height: 100px;
    background-color: crimson;
}
#footer>#copyright{
    float: left;
    width: 800px;
    height: 100px;
    background-color: royalblue;
}
#footer>#famsite{
    float: left;
    width: 200px;
    height: 100px;
    background-color: chartreuse;
}
 
cs

 

 

<구현 화면>