728x90
배너 유형 01
01. figma
간편하게 디자인 하기 위해 피그마로 디자인 해보았습니다.
02. HTML
HTML 입니다. 배너 타입은 그저 이미지 위에 글씨만 올리는 타입이라 html도 간단합니다.
<section id="bannerType" class="banner__wrap nexon">
<h2 class="blind">배너 영역</h2>
<div class="banner__inner">
<h3 class="title">고양이 사이트</h3>
<p class="desc">세상에서 귀여운 고양이들을 알리기 위해 만든 사이트 입니다.
<a href="#" title="고양이 보러가기">다들 고양이 자랑과 이미지 보고 가세요.</a>
</p>
<span class="small">배너 유형 01</span>
</div>
</section>
03. css
글자색이라던가, 크기만 조정해주면 배너타입은 완성입니다.
.banner__inner {
background-image: url(../../../bannerType/img/banner_bg01.jpg);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
text-align: center;
padding: 120px 0;
color: #fff;
}
.banner__inner .title {
font-size: 50px;
line-height: 1;
font-weight: 500;
margin-bottom: 40px;
}
.banner__inner .desc {
font-size: 24px;
line-height: 1.5;
font-weight: 300;
margin-bottom: 70px;
}
.banner__inner .desc a {
color: #fff;
display: block;
}
.banner__inner .desc a:hover {
text-decoration: underline;
}
.banner__inner .small {
font-size: 16px;
text-decoration: underline;
}
728x90
'사이트 보기' 카테고리의 다른 글
사이트 & 반응형 사이트 (5) | 2022.09.12 |
---|---|
슬라이드 유형 01 (3) | 2022.09.05 |
푸터 유형 01 (2) | 2022.09.05 |
헤더 사이트 (8) | 2022.09.01 |
텍스트 / 이미지 사이트 (6) | 2022.09.01 |
댓글