관리 메뉴

프로그래밍 삽질 중

[유튜브 강의] footer 부분 Awa Melvine 강의 참고 본문

과거 프로그래밍 자료들/Html&CSS

[유튜브 강의] footer 부분 Awa Melvine 강의 참고

평부 2021. 6. 4. 23:06

※ 학습 이유 : footer 부분이 웹 사이트마다 다 비슷하기에 공부의 필요성 느낌

※ 코드는 전적으로  Awa Melvine 님에게 있으며, 문제가 될 경우 내릴 예정

(All html&css code belongs to Awa Melvine, and the post will be deleted if there is any problem.)

https://www.youtube.com/watch?v=jZ2XYDWKENs&t=467s (참고 사이트 참고로 footer 부분은 1,2회로 진행됨) 

※ 스프링을 공부하고 있어 화면 표시 부분은 jsp로 진행

※ 총 진행 파일(html & css : footer.jsp)

 

 

[footer.jsp] 화면1

[footer.jsp] 화면2

AwaInspires 내 아이콘들도 커서 갖다대면 하얀색으로 표시

 

[footer.jsp 코드]

 

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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<%@ page language="java" contentType="text/html; charset=UTF-8"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<!-- icon link -->
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.8.2/css/all.min.css"/>
<head>
<style>
body {
    margin: 0;
    padding: 0;
}
.btn-big {
    padding: .7rem 1.3rem;
    line-height: 1.3rem;
}
.footer {
    background: #303036;
    color: #d3d3d3;
    height: 400px;
    position: relative; 
}
.footer .footer-content { 
    /* border : 1px solid red; 설정 전 미리 체크 */
    height: 350px;
    display: flex;
}
 
.footer .footer-content .footer-section {/*3단락으로 구분됨*/
    flex: 1;
    padding: 25px;
    /* border: 1px solid white; 설정 전 미리 체크 */
}
.footer .footer-content h1,
.footer .footer-content h2 {
    color: white;    
}
.footer .footer-content .about h1 span {
    color: ##05f7ff;
}
.footer .footer-content .about .contact span {
    display: block;
    font-size: 1.1em;
    margin-bottom: 8px; /*Awalnspires 아이콘 내 간격 넓어짐*/
}
.footer .footer-content .about .socials a {
    border: 1px solid grey;
    width: 45px;
    height: 41px;
    padding-top: 5px;
    margin-right: 5px;
    text-align: center;
    display: inline-block;
    font-size: 1.3em;
    border-radius: 5px;
    transition: all .3s; /*아이콘에 갖다대면 하얀색으로 표시*/
}
.footer .footer-content .about .socials a:hover {
    border: 1px solid white;
    color: white;
    transition: all .3s;
}
.footer .footer-content .links ul a {
    display: block;
    margin-bottom : 10px;
    font-size: 1.2em;
    transition: all .3s; 
.footer .footer-content .links ul a:hover {
    color: white;
    margin-left: 15px;
    transition: all .3s; /*아이콘에 갖다대면 하얀색으로 표시*/
}
.footer .footer-content .contact-form .contact-input{ /*contact us 속성 부분*/
    background: #272727;
    color: ##bebdbd;
    margin-bottom: 10px;
    line-height: 1.5rem;
    padding: .9rem 1.4rem;
    border: none;
    
}
 
 
.footer .footer-content .contact-form .contact-input: focus {
    background: #1a1a1a;
}
 
.footer .footer-content .contact-form .contact-btn {
    float:right;
}
 
.footer .footer-bottom {
    background: #303036;
    color: #686868;
    height: 50px;
    width: 100%; /*중앙배치됨*/
    text-align: center;
    position: absolute; 
    bottom: 0px;
    left: 0px;
    padding-top: 20px;
}
</style>
<meta charset="UTF-8">
<title>footer</title>
</head>
<body>
<div class="footer">
    <div class="footer-content">
        <div class="footer-section about">
            <h1 class="logo-text"><span>Awa</span>Inspires</h1>
            <p>
            Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt 
            ut labore et dolore magna aliqua.
            </p>
            <div class="contact">
                <span><i class="fas fa-phone"></i>&nbsp; 123-456-789</span>
                <span><i class="fas fa-envelope"></i>&nbsp; info@travel.com</span>
            </div>
            <div class="socials">
                <a href="#"><i class="fab fa-facebook"></i></a>
                <a href="#"><i class="fab fa-instagram"></i></a>
                <a href="#"><i class="fab fa-twitter"></i></a>
                <a href="#"><i class="fab fa-youtube"></i></a>
            </div>
        </div>
        <div class="footer-section links">
            <h2>Quick Links</h2>
            <br>
            <ul>
                <a href="#"><li>Event</li></a>
                <a href="#"><li>Team</li></a>
                <a href="#"><li>Member</li></a>
            </ul>
        </div>
        <div class="footer-section contact-form">
            <h2>Contact us</h2>
            <br>
            <form action="index.html" method="post">
                <input type="email" name="email" class="text-input contact-input" placeholder="Your email Address....">
                <textarea name="message" class="text-input contact-input"  placeholder="Your Message..."></textarea>
                <button type="submit" class="btn btn-big contact-btn">
                    <i class="fas fa-envelope"></i>
                    Send
                </button>
            </form>
        </div>    
    </div>
    <div class="footer-bottom">
    &copy; codingpoets.com | Desinged by Awa Melvine 
    </div>
</div>
</body>
</html>
cs

[배운 점]

1. 요소들을 배치 전 먼저 border: 1px solid white로 구역을 나누고 시작해야하 더 깔끔하게 진행됨을 알게 됨 

2. 기존에 웹사이트를 돌아다니면서 본 footer의 대부분이 이런식으로 진행될 것이라 예상됨