기초부터 시작하는 코딩/HTML

사이트를 만들어 봅시다. - ImgTextType(01)

kebab00 2023. 3. 14. 20:05

728x90

- 오늘은 위에 있는 예시처럼 이미지와 텍스트로 이루어진 이미지텍스트타입의 페이지를 만들어 보겠습니다.

- 구조는 크게 설명을 적은 텍스트 부분과 이미지로 이루어진 이미지 부분2개가 있겠습니다.

- 함께 바디부분의 코드를 먼저 보겠습니다.

<body>
    <section class="img_text__wrap nexon container">
        <div class="img_text__inner">
            <h2 class="blind">이미지&텍스트 영역</h2>
            <div class="img_text__text">
                <span class="section__small">NOTICE</span>
                <h2>수많은 종류의 식물들</h2>
                <p>많이 기르는 식물의 종류는 지역에 따라 다르지만, 일반적으로 다음과 같은 식물들이 많이 기르고 있습니다.</p>
                <ul>
                    <li>장미</li>
                    <li>튤립</li>
                    <li>백합</li>
                    <li>카네이션</li>
                    <li>아몬드</li>
                    <li>로즈마리</li>
                    <li>페퍼민트</li>
                    <li>바질</li>
                    <li>라벤더</li>
                    <li>선인장</li>
                    <li>알로에</li>
                </ul>
            </div>
            <figure class="img_text__img">
                <img src="../asset/img/img_textType01_02.jpg" alt="텍스트이미지타입01">
            </figure>
            <figure class="img_text__img">
                <img src="../asset/img/img_textType01_01.jpg" alt="텍스트이미지타입02">
            </figure>
        </div>
    </section>
</body>

- 저는 크게 텍스트가 들어간 부분과 이미지가 들어간 부분 2개 총 3개지 부분으로 나누었습니다.

- 텍스트가 들어간 부분에는 <span>, <h2>,<p>,<ul>등의 태그를 사용하여 내용을 넣어주었습니다.

<style>
    /* reset */
        * {
        margin: 0;
        padding: 0;
    }
    a {
        text-decoration: none;
        color: #000;
    }
    img {
        vertical-align: top;
        width: 100%;

    }
    h1,h2,h3,h4,h5,h6 {
        font-weight: normal;
    }
    .container {
        width: 1160px;
        margin: 0 auto;
        padding: 0 20px;
        /* background-color: rgba(0, 0, 0, 0.1); */
    }
    img {
        text-decoration: none;
    }
    .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: #218d73;
        color: #fff;
        padding: 1px 23px;
        text-transform: uppercase;
        margin-bottom: 20px;
        display: inline-block;

    }
    .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: 70px !important;}
    .mt70 {margin-top: 60px !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: 70px !important;}
    .mb70 {margin-bottom: 60px !important;}

    .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;
    }
    /* img_text__wrap */
    .img_text__wrap {
        height: 900px;
        margin-top: 120px;
    }
    .img_text__inner {
        display: flex;
        justify-content: space-between;
    }
    .img_text__text {
        width: 373px;
    }
    .img_text__text h2 {
        font-size: 50px;
        line-height: 1.2;
        margin-bottom: 25px;
    }
    .img_text__text p {
        font-size: 16px;
        margin-bottom: 15px;
        line-height: 1.5;
        color: #666;
    }
    .img_text__text ul {
        font-size: 16px;
        margin-left: 15px;
        line-height: 1.4;
        color: #666;
    }
</style>

- reset은 다른 곳에서 쓴 것을 그대로 가져왔습니다.

- 먼저 img_text__wrap 부분에 크기와 위치를 잡아주었습니다.

- 텍스트부분과 이미지부분의 상위태그인 img_text__inner에 display: flex;와 justify-content: space-between;를 주어 가로 정렬해주고 사이의 간격을 일정하게 해주었습니다.

- 그리고 텍스트 부분의 크기를 정해주었습니다.

- 그리고 제목과 내용, ul태그의 서식을 정해주면~~

- done~!! 수고하셨습니다!!!