728x90
반응형
사이트 만들기 : 카드유형01
사이트의 유형은 다양합니다. 메뉴, 배너, 이미지, 슬라이드, 동영상 외에도 많은 유형이 있지만, 그 중에서 카드 유형에 대해 알아봅시다.
Figma
코드를 진행하기에 앞서, 피그마를 이용해서 웹사이트를 디자인합니다. 디자인의 틀을 잡아줍니다.
CSS
'>' 를 사용하여 바로 아래 자식요소만 적용시킵니다.
display: flex;를 사용하여 정렬을 합니다. justify-content: space-between; 으로 아이템들의 “사이(between)”에 균일한 간격을 만들어 줍니다.
/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');
.nexon {
font-family: 'NexonLv1Gothic';
font-weight: 400;
}
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
img {
width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
}
/* common */
.container {
width: 1160px;
padding: 0 20px;
margin: 0 auto;
}
.section {
padding: 120px 0;
}
.section>h2 {
font-size: 50px;
line-height: 1;
text-align: center;
margin-bottom: 20px;
}
.section>p {
font-size: 22px;
font-weight: 300;
color: #666;
text-align: center;
margin-bottom: 70px;
}
/* cardType */
.card__inner {
display: flex;
justify-content: space-between;
}
.card {
width: 32%;
background: #f5f5f5;
}
.card__body {
padding: 24px;
}
.card__body .tit {
font-size: 24px;
margin-bottom: 10px;
}
.card__body .desc {
font-size: 18px;
line-height: 1.4;
color: #666;
margin-bottom: 20px;
font-weight: 300;
}
.card__body .btn {}
HTML
article은 시멘틱 태그이기에 제목을 추가합니다.
이미지를 사용할 때 figure 태그를 사용하고, alt 태그로 이미지 없을 때 대체하는 것을 사용하여 웹표준을 준수합니다.
<section id="cardType" class="card__wrap nexon section">
<h2>계절</h2>
<p>계절에 대해 알아봅시다.</p>
<div class="card__inner container">
<article class="card">
<!--
//이미지를 사용할 때 figure 태그를 사용하는 것이 웹표준 준수.
alt는 이미지 없을 때 대체하는 것, 웹표준 준수
-->
<figure class="card__header">
<img src="img/card_bg01.jpg" alt="여름">
</figure>
<div class="card__body">
<h3 class="tit">여름</h3>
<p class="desc">일반적으로 3, 4, 5월을 봄,<br>
6, 7, 8월을 여름,<br>
9, 10, 11월을 가을,<br>
12, 1, 2월을 겨울이라고 한다.
</p>
<a class="btn" href="/">더 자세히 보기</a>
</div>
</article>
<article class="card">
<figure>
<img src="img/card_bg02.jpg" alt="봄/가을">
</figure>
<div class="card__body">
<h3 class="tit">봄/가을</h3>
<p class="desc">일반적으로 3, 4, 5월을 봄,<br>
6, 7, 8월을 여름,<br>
9, 10, 11월을 가을,<br>
12, 1, 2월을 겨울이라고 한다.
</p>
<a class="btn" href="/">더 자세히 보기</a>
</div>
</article>
<article class="card">
<figure>
<img src="img/card_bg03.jpg" alt="겨울">
</figure>
<div class="card__body">
<h3 class="tit">겨울</h3>
<p class="desc">일반적으로 3, 4, 5월을 봄,<br>
6, 7, 8월을 여름,<br>
9, 10, 11월을 가을,<br>
12, 1, 2월을 겨울이라고 한다.
</p>
<a class="btn" href="/">더 자세히 보기</a>
</div>
</article>
</div>
</section>
728x90
반응형
'사이트' 카테고리의 다른 글
이미지 유형03 (3) | 2022.08.21 |
---|---|
이미지 유형02 (2) | 2022.08.17 |
이미지 유형01 (2) | 2022.08.17 |
사이트 유형 - 카드 유형03 (8) | 2022.08.10 |
사이트 유형 - 카드 유형02 (11) | 2022.08.09 |