본문 바로가기
HTML

푸터 유형 페이지 만들어보기!!

by dongjin6539 2023. 3. 22.
728x90
반응형

푸터 유형 페이지 만들어보기!!

 

이미지 유형 : https://dongjin6539.tistory.com/28

카드 유형 : https://dongjin6539.tistory.com/31

텍스트 유형 : https://dongjin6539.tistory.com/35

이미지/텍스트 유형 : https://dongjin6539.tistory.com/39

슬라이드 유형 : https://dongjin6539.tistory.com/40

헤더 유형 : https://dongjin6539.tistory.com/44

 

지난 번에 이어 또다른 페이지를 만들어보았습니다.

지난 번과 같은 방식으로 시작해보겠습니다.

 

코드 보기 / 완성화면

 

 

 

코드 블럭

<!DOCTYPE html>
<html lang="ko">
<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">
    <title>푸터 유형01</title>

    <link href="https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css" rel="stylesheet">
    <style>
        /* reset */
        * {
            margin: 0;
            padding: 0;
        }
        a {
            text-decoration: none;
            color: #000;
        }
        h1,h2,h3,h4,h5,h6 {
            font-weight: normal;
        }
        img {
            vertical-align: top;
            width: 100%;
        }
        li {
            list-style: none;
        }
        .blind{
            position: absolute;
            clip: rect(0 0 0 0);
            width: 1px;
            height: 1px;
            margin: -1px;
            overflow: hidden;
        }
        .mt10 {margin-top: 10px !important;}
        .mt20 {margin-top: 20px !important;}
        .mt30 {margin-top: 30px !important;}
        .mt40 {margin-top: 40px !important;}
        .mt50 {margin-top: 50px !important;}
        .mt60 {margin-top: 60px !important;}
        .mt70 {margin-top: 70px !important;}

        .mb10 {margin-bottom: 10px !important;}
        .mb20 {margin-bottom: 20px !important;}
        .mb30 {margin-bottom: 30px !important;}
        .mb40 {margin-bottom: 40px !important;}
        .mb50 {margin-bottom: 50px !important;}
        .mb60 {margin-bottom: 60px !important;}
        .mb70 {margin-bottom: 70px !important;}

        /* common */
        .container {
            width: 1160px;
            margin: 0 auto;
            padding: 0 20px;
            /* background-color: #cacaca; */
        }
        .nexon {
            font-family: 'NexonLv1Gothic';
            font-weight: 400;
        }
        .section {
            padding: 120px 0;            
        }
        .section.center {
            text-align: center;
        }
        .section__small {
            font-size: 14px;
            border-radius: 50px;
            background-color: #FF0000;
            color: #fff;
            padding: 1px 23px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
            line-height: 1.5;
        }
        .section__h2 {
            font-size: 50px;
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1;
        }
        .section__desc {
            font-size: 22px;
            color: #666;
            margin-bottom: 70px;
            font-weight: 300;
            line-height: 1.5;
        }

        /* footer__wrap */
        .footer__menu {
            display: flex;
            text-align: left;
        }
        .footer__menu > div {
            width: 16.666%;
        }
        .footer__menu > div h3 {
            margin-bottom: 13px;
        }
        .footer__menu > div li {
            line-height: 1.9;
            font-size: 14px;
        }
        .footer__menu > div li a {
            color: #666;
        }
        .footer__right {
            margin-top: 50px;
            border-top: 1px dotted #d9d9d9;
            padding-top: 50px;
            text-align: center;
            font-style: normal;
            line-height: 1.6em;
            color: #666;
            font-size: 14px;
        }
    </style>
</head>
<body>
    <footer class="footer__wrap section center nexon">
        <h2 class="blind">운동 사이트</h2>
        <div class="container">
            <div class="footer__inner">
                <div class="footer__menu">
                    <div>
                        <h3>운동 사이트</h3>
                        <ul>
                            <li><a href="#">소개하기</a></li>
                            <li><a href="#">운동을 하는 이유</a></li>
                            <li><a href="#">운동 시 주의할 점</a></li>
                            <li><a href="#">운동의 종류</a></li>
                            <li><a href="#">운동의 필수 요소</a></li>
                        </ul>
                    </div>
                    <div>
                        <h3>운동을 하는 이유</h3>
                        <ul>
                            <li><a href="#">조기 사망 감소</a></li>
                            <li><a href="#">질환 예방</a></li>
                            <li><a href="#">근골격 건강 증진</a></li>
                            <li><a href="#">체중 조절</a></li>
                            <li><a href="#">암 발생 감소</a></li>
                            <li><a href="#">정신 건강 증진</a></li>
                        </ul>
                    </div>
                    <div>
                        <h3>운동 시 주의할 점</h3>
                        <ul>
                            <li><a href="#">적절한 스트레칭</a></li>
                            <li><a href="#">자신의 체력 상태</a></li>
                            <li><a href="#">올바른 자세</a></li>
                            <li><a href="#">적절한 운동량</a></li>
                            <li><a href="#">적절한 장비 착용</a></li>
                            <li><a href="#">충분한 수분 섭취</a></li>
                            <li><a href="#">적절한 휴식</a></li>
                            <li><a href="#">질병과 상태 고려</a></li>
                            <li><a href="#">부상 방지</a></li>
                            <li><a href="#">운동 전문가와 상담</a></li>
                        </ul>
                    </div>
                    <div>
                        <h3>운동의 종류</h3>
                        <ul>
                            <li><a href="#">무산소</a></li>
                            <li><a href="#">유산소</a></li>
                            <li><a href="#">스트레칭</a></li>
                            <li><a href="#">무산소 + 유산소</a></li>
                        </ul>
                    </div>
                    <div>
                        <h3>운동의 필수 요소</h3>
                        <ul>
                            <li><a href="#">의지력</a></li>
                            <li><a href="#">운동 장비</a></li>
                            <li><a href="#">올바른 운동 기술</a></li>
                            <li><a href="#">충분한 휴식과 수면</a></li>
                            <li><a href="#">적절한 식습관</a></li>
                            <li><a href="#">목표 설정</a></li>
                        </ul>
                    </div>
                    <div>
                        <h3>공유</h3>
                        <ul>
                            <li><a href="#">영상</a></li>
                            <li><a href="#">커뮤니티</a></li>
                        </ul>
                    </div>
                </div>
                <address class="footer__right">
                    2023 Shin D.J. 운동 사이트 Portifolio is Power<br>
                    All Right Reserved
                </address>
            </div>
        </div>
    </footer>
</body>
</html>

 

방법

  • 지난번에 했던 유형 페이지 의 글꼴과 style 태그의 /* reset */, /* commom */ 에 해당하는 부분은 모든 페이지의 공용으로 사용하기 때문에 그대로 가져왔습니다. 다만, 추가로 바꿔야 할게 있으면 모든 페이지에 추가를 해줘야 합니다.
  • 지나번 페이지 만드는 방법보다 매우 쉽게 따라할 수 있습니다.
  • 이번에는 푸터 부분이기 때문에 footer 태그를 사용해 틀을 잡아주고 class 명을 "footer__wrap"를 입력해줍니다.
  • 공통 스타일을 사용하기 위해 추가로 "section center nexon"을 class 명에 추가해줍니다.
  • 자식으로 공통 스타일 class "container"을 만들어줍니다.
  • 또 자식으로 class "footer__inner"을 만들고 또 자식으로 목록과 주소를 입력하기 위해 class "footer__menu", "footer__right"를 만들어줍니다.
  • class "footer__menu" 안에 div 태그를 사용하고 자식으로 h3 태그, ul 태그, li 태그, a 링크 태그를 사용해서 텍스트를 입력해줍니다.
  • class "footer__right" 에 알맞는 텍스트를 입력해줍니다.
  • style 태그로 이동해서 "footer__menu", "footer__menu > div", "footer__menu > div h3", "footer__menu > div li", "footer__menu > div li a", "footer__right"에 원하는 스타일의 알맞는 속성을 입력해서 스타일을 만들어줍니다.
  • 그러면 원하는 웹 페이지가 만들어집니다.

 

참고

https://dongjin6539.github.io/web2023/site/index.html

728x90
반응형