ss [웹 사이트 제작]이미지/텍스트 유형 01
본문 바로가기
웹 사이트 제작

[웹 사이트 제작]이미지/텍스트 유형 01

by 꿈나무개발 2022. 9. 1.
728x90

이미지/텍스트유형01

오늘은 사이트만들기에서 이미지/텍스트 유형을 제작해 보겠습니다.

1. Figma로 디자인하기

Figma를 이용해 그리드를 나누어 전체적인 틀을 만들어줍니다.

2. HTML

웹표준 준수를 위해 시맨틱 태그를 사용합니다.

<section id="imgTextType01" class="imgText__wrap Nexon section gray">
    <h2 class="blind">유용한 사이트 살펴보기</h2>
    <div class="imgText__inner container">
        <div class="imgText__txt">
            <span>이미지 텍스트 유형01</span>
            <h3>유용한 사이트 살펴보기</h3>
            <p>웹디자이너, 웹 퍼블리셔, 프론트앤드 개발자를 위한 유용한 사이트입니다.</p>
            <ul>
                <li><a href="#">튜토리얼 사이트</a></li>
                <li><a href="#">레퍼런스 사이트</a></li>
                <li><a href="#">웹폰트 사이트</a></li>
                <li><a href="#">CSS 사이트</a></li>
                <li><a href="#">WebGL 사이트</a></li>
                <li><a href="#">Youtube 사이트</a></li>
            </ul>
        </div>
        <div class="imgText__img img1">
            <a href="#">레퍼런스 사이트</a>
        </div>
        <div class="imgText__img img2">
            <a href="#" class="blue">튜토리얼 사이트</a>
        </div>
    </div>
</section>

3. CSS

Figma를 이용해 만든 디자인을 보며 css설정을 합니다.

.imgText__inner {
    display: flex;
    justify-content: space-between;
}
.imgText__inner>div {
    width: 32%;
    height: 500px;
}
.imgText__txt span {
    font-size: 16px;
    color: #666;
    text-decoration: underline;
    text-underline-position: under;
    margin-bottom: 20px;
    display: block;
}
.imgText__txt h3 {
    font-size: 50px;
    font-weight: 300;
    word-break: keep-all; /* 문단에서 끊어주기 */
    line-height: 1.4;
    margin-bottom: 20px;
}
.imgText__txt p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    color: #666;
    margin-bottom: 10px;
}
.imgText__txt ul {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
}
.imgText__txt ul li {
    position: relative;
    padding-left: 20px;
}
.imgText__txt ul li a {
    color: #666;
}
.imgText__txt ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    position: absolute;
    left: 5px;
    top: 9px;
    background: #666;
}
.imgText__img {
    border-radius: 10px;
    position: relative;
}
.imgText__img a {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: #7c2b39;
    color: #fff;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 30px;
    display: inline-block;
}
.imgText__img a.blue {
    background-color: #2b387c;
}
.imgText__img.img1 {
    background: url(img/imgText_bg01.jpg) no-repeat center / cover;
}
.imgText__img.img2 {
    background: url(img/imgText_bg02.jpg) no-repeat center / cover;
}

최종결과

728x90
반응형

댓글


HTML
CSS
JAVASCRIPT

JAVASCRIPT

자세히보기
광고 준비중입니다.