본문 바로가기
UI|UX/사이트유형

사이트유형 - 배너

by SyuMay 2022. 9. 6.
728x90

배너 유형

배너 유형은 이미지가 제일 큽니다.


1.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="새로운페이지열림" target="_blank">syumay.tistory.com</a>
    </p>
    <span class="small">배너 유형01</span>
  </div>
</section>

2.CSS 코드

코드 보기
.banner__inner {
  background-image: url(../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: 300;
  margin-bottom: 40px;
}
.banner__inner .desc {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 70px;
}
.banner__inner .small {
  font-size: 16px;
  text-decoration: underline;
}

.banner__inner .desc a {
  color: #fff;
  display: block;
}
.banner__inner .desc a :hover {
  text-decoration: underline;
}

완성본

728x90
반응형

'UI|UX > 사이트유형' 카테고리의 다른 글

사이트유형 - 완성본  (1) 2022.09.19
사이트유형 - 슬라이드  (3) 2022.09.06
사이트유형 - 푸터  (2) 2022.09.06
사이트유형 | 이미지-텍스트 유형  (11) 2022.09.01
사이트유형 | 헤더유형  (9) 2022.09.01

댓글


자바스크립트 사진

JavaScript

자세히보기