Bomb Kirby Running

웹 페이지 만들기

이미지 유형 레이아웃 웹페이지 만들기

^. ̫ .^ 2023. 3. 11. 21:35

728x90

 

수업 시간에 위와 같은 이미지유형 레이아웃을 똑같이 웹 페이지로 구현해 보았습니다.

 

<!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%;
        }
        .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__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;
        }

        /* image__wrap */
        .image__inner {
            display: flex;
            justify-content: space-between;
        }
        .image__inner .image {
            width: 570px;
            height: 370px;
            background-color: #ccc;
            position: relative;
        }
        .image__body {
            position: absolute;
            left: 0;
            bottom: 0;
            color: #fff;
            text-align: left;
            padding: 30px;
        }
        .image__body .title {
            font-size: 32px;
            line-height: 1;
            margin-bottom: 15px;
        }
        .image__body .desc {
            margin-bottom: 15px;
            line-height: 1.5;
            padding-right: 20%;
        }
        .image__body .btn {
           color: #fff;
           background-color: rgba(0, 0, 0, 0.5);
           padding: 10px 30px;
           display: inline-block;
        }
    </style>
</head>
<body>
    <section class="image__wrap section center nexon">
        <div class="container">
            <h2 class="section__h2">반려묘를 키우는 방법</h2>
            <p class="section__desc">반려묘를 키우려면 돈도 많고 열정과 노력과 부모가 시간도 많아야 합니다.</p>
            <div class="image__inner">
                <article class="image">
                    <figure class="image__header">
                        <img src="../assets/image/imageType_01.jpg" alt="고양이키우기">
                    </figure>
                    <div class="image__body">
                        <h3 class="title">고양이키우기</h3>
                        <p class="desc">고양이에게는 균형 잡힌 식사와 깨끗한 물이 필요합니다
                            물을 항상 제공하고, 그릇을 깨끗하게 유지해야 합니다.</p>
                        <a href="#" class="btn">자세히 보기</a>   
                    </div> 
                </article>
                <article class="image">
                    <figure class="image__header">
                        <img src="../assets/image/imageType_02.jpg" alt="사료가 중요">
                    </figure>
                    <div class="image__body">
                        <h3 class="title">사료가 중요</h3>
                        <p class="desc">고양이에게는 균형 잡힌 식사와 깨끗한 물이 필요합니다
                            물을 항상 제공하고, 그릇을 깨끗하게 유지해야 합니다.</p>
                        <a href="#" class="btn">자세히 보기</a> 
                    </div>
                </article>
            </div>
        </div>
    </section>
</body>
</html>

 

만드는 방법 풀이

먼저 설정해주고 싶은 font를 설정해줍니다. 저는 넥슨고딕Lv1을 사용했습니다.

<link href="https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css" rel="stylesheet">

 

body 부분에 section 태그를 만들어주고 class를 이미지 유형 전체를 감싸주니 image__wrap으로 설정해줍니다.

nexon은 나중에 글씨를 설정해줄 것이기 때문에 옆에 같이 넣습니다.

그 다음 div태그를 만들어고 위 예시 이미지를 참고해서 들어갈 내용들을 넣어줍니다.

h2,h3는 제목 태그,p 태그는 HTML 문서에서 문단(paragraph)을 만드는 태그입니다.

a 태그는 HTML 문서에서 하이퍼링크를 만드는 태그입니다. class로 버튼을 뜻하는 btn을 지정해줍니다.

<body>
    <section class="image__wrap section center nexon">
        <div class="container">
            <h2 class="section__h2">반려묘를 키우는 방법</h2>
            <p class="section__desc">반려묘를 키우려면 돈도 많고 열정과 노력과 부모가 시간도 많아야 합니다.</p>
            <div class="image__inner">
                <article class="image">
                    <figure class="image__header">
                        <img src="../assets/image/imageType_01.jpg" alt="고양이키우기">
                    </figure>
                    <div class="image__body">
                        <h3 class="title">고양이키우기</h3>
                        <p class="desc">고양이에게는 균형 잡힌 식사와 깨끗한 물이 필요합니다
                            물을 항상 제공하고, 그릇을 깨끗하게 유지해야 합니다.</p>
                        <a href="#" class="btn">자세히 보기</a>   
                    </div> 
                </article>
                <article class="image">
                    <figure class="image__header">
                        <img src="../assets/image/imageType_02.jpg" alt="사료가 중요">
                    </figure>
                    <div class="image__body">
                        <h3 class="title">사료가 중요</h3>
                        <p class="desc">고양이에게는 균형 잡힌 식사와 깨끗한 물이 필요합니다
                            물을 항상 제공하고, 그릇을 깨끗하게 유지해야 합니다.</p>
                        <a href="#" class="btn">자세히 보기</a> 
                    </div>
                </article>
            </div>
        </div>
    </section>
</body>

 

style 안에 reset부분은 전 글에 설명했으므로 참고 바랍니다.

저번처럼 메인 제목과 설명 글에 다음과 같이 css를 적용시켜줍니다.

 /* 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__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;
        }

 

 

그리고 이미지 유형 부분을 만드는 css를 설정해줍니다.

/* image__wrap */
        .image__inner {
            display: flex;
            justify-content: space-between;
        }
        .image__inner .image {
            width: 570px;
            height: 370px;
            background-color: #ccc;
            position: relative;
        }
        .image__body {
            position: absolute;
            left: 0;
            bottom: 0;
            color: #fff;
            text-align: left;
            padding: 30px;
        }
        .image__body .title {
            font-size: 32px;
            line-height: 1;
            margin-bottom: 15px;
        }
        .image__body .desc {
            margin-bottom: 15px;
            line-height: 1.5;
            padding-right: 20%;
        }
        .image__body .btn {
           color: #fff;
           background-color: rgba(0, 0, 0, 0.5);
           padding: 10px 30px;
           display: inline-block;
        }

이렇게 설정해주면 위와 같은 사이트가 완성됩니다.