사이트 만들기
배너 유형01
Figma
HTML 작성
<section id="bannerType" class="banner__wrap nexon section">
<h2 class="blind">배너 영역</h2>
<div class="banner__inner">
<h3 class="title">블로거 이영환</h3>
<p class="desc">더 다양한 정보는 블로그를 통해 제공하고 있습니다.
<a href="https://younghwan112.tistory.com/" title="블로그로 이동">https://younghwan112.tistory.com/</a>
</p>
<span class="small">배너 유형01</span>
</div>
</section>
CSS 작성
/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');
.blind{
position:absolute;
clip: rect(0 0 0 0);
width: 1px;
height: 1px;
margin: -1px;
overflow: hidden
}
/* 이미지 대체(ir) */
.ir {
display: block;
overflow: hidden;
font-size: 0;
line-height: 0;
text-indent: -9999px;
}
.nexon {
font-family: "NexonLv1Gothic";
font-weight: 400;
}
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
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: normal;
text-align: center;
margin-bottom: 87px;
}
.section > p {
font-size: 16px;
font-weight: 300;
color: #000;
text-align: center;
margin-bottom: 10px;
}
.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 .desc a {
color: #fff;
display: block;
}
.banner__inner .desc a:hover {
text-decoration: underline;
}
.banner__inner .small {
font-size: 16px;
text-decoration: underline;
}
결과
'사이트 만들기' 카테고리의 다른 글
사이트 만들기 - 실전 유형01 (6) | 2022.09.12 |
---|---|
사이트 만들기 - 푸터 유형 (3) | 2022.09.05 |
사이트 만들기 - 슬라이드 유형 (6) | 2022.09.05 |
사이트 만들기 - 이미지 텍스트 유형 (7) | 2022.09.01 |
사이트 만들기 - 헤더 유형 (7) | 2022.09.01 |
댓글