본문 바로가기
HTML

헤더 유형 페이지 만들어보기!!

by dongjin6539 2023. 3. 19.
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/49

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

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

 

코드 보기 / 완성화면

 

 

 

코드 블럭

<!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;
        }
        li {
            list-style: none;
        }
        img {
            vertical-align: top;
            width: 100%;
        }
        .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: rgba(0, 0, 0, 0.1); */
        }
        .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;
        }

        /* header__wrap */
        .header__wrap {
            font-family: 'NexonLv1Gothic';
        }
        .header__inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            border-bottom: 1px solid #ccc;
        }
        .header__logo {
            width: 20%;
        }
        .header__menu {
            width: 60%;
            text-align: center;
        }
        .header__menu li {
            display: inline-block;
        }
        .header__menu li a {
            display: inline-block;
            padding: 10px 30px;
        }
        .header__member {
            width: 20%;
            text-align: right;
        }
        .header__member a {
            border: 1px solid #000;
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 16px;
        }
    </style>
</head>
<body>
    <header class="header__wrap">
        <div class="header__inner">
            <h1 class="header__logo">Need of Exercise</h1>
            <nav class="header__menu">
                <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>
            </nav>
            <div class="header__member">
                <a href="#">로그인</a>
            </div>
        </div>
    </header>
</body>
</html>

 

방법

  • 지난번에 했던 유형 페이지 의 글꼴과 style 태그의 /* reset */, /* commom */ 에 해당하는 부분은 모든 페이지의 공용으로 사용하기 때문에 그대로 가져왔습니다. 다만, 추가로 바꿔야 할게 있으면 모든 페이지에 추가를 해줘야 합니다.
  • 지나번 페이지 만드는 방법보다 매우 쉽게 따라할 수 있습니다.
  • 이번에는 헤더 부분이기 때문에 header 태그를 사용해 틀을 잡아주고 class 명을 "header__wrap"를 입력해줍니다.
  • 자식으로 텍스트를 입력하기 위해 div 태그를 사용해 class 명을 "header__inner"를 입력해줍니다.
  • 텍스트를 제목과 메뉴, 로그인창을 넣기 위해 h1 태그, nav 태그, div 태그를 사용해 틀을 잡아줍니다.
  • 각각 class 명을 사용해서 "header__logo", "header__menu", "header__member"로 틀을 잡아줍니다.
  • nav 태그에는 메뉴을 작성하기 위해 ul 태그와 li 태그와 a 링크 태그를 사용해 목록을 입력해줍니다.
  • class "header__member"에는 a 링트 태그를 사용해 로그인 텍스트를 입력해줍니다.
  • 다음으로 style 태그로 넘어가서 각각 class에 알맞는 속성을 입력해줍니다.
  • a 링크 태그, li 태그, h1 태그에는 이미 스타일을 부여해줬기 때문에 태그를 사용하면서 미리 확인해줘야합니다.
  • "header__wrap"에는 font-family 속성을 부여해서 폰트를 정해줍니다.
  • "header__logo", "header__menu", "header__member"에 각각 알맞는 width값을 입력해주고 원하는 스타일의 속성들을 입력해줍니다. li 태그는 인라인 구조여서 세로로 나열되어있는데 display: inline-block;를 사용해서 가로로 나열하게 해줍니다. 
  • "header__inner"에는 태그 별로 구역이 정해져 있어 웹 브라우저 width에 맞게 display: flex;를 쓰고 justify-content: space-between;을 사용해 구역을 잡아줍니다. 그리고 가운데 정렬, 알맞는 padding값, border값을 입력해줍니다.
  • 추가로 각각 알맞는 스타일 속성을 부여해서 위치를 잡아줍니다.
  • 그러면 원하는 웹 페이지가 만들어집니다.

 

참고

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

728x90
반응형