728x90
사이트 유형 | 이미지 텍스트유형
이미지 텍스트유형은 이미지 유형과 텍스트 유형을 합친것입니다.
1.HTML 코드
코드 보기
<section id="imgTextType" class="imgText__wrap nexon section">
<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>
2.CSS 코드
코드 보기
/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css')
.nexon {
font-family: 'NexonLv1Gothic';
font-weight: 400;
/* reset */
* {
margin: 0;
padding: 0;
img {
width: 100%;
a {
text-decoration: none;
color: #000;
em,
i,
address {
font-style: normal;
li {
list-style: none;
h1,
h2,
h3,
h4,
h5 h6 {
font-weight: normal;
/* 블라인드 효과 */
.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: -9999;
.gray {
background-color: #f5f5f5;
/* 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;
font-weight: bold;
.section>span {
display: block;
text-align: center;
font-size: 16px;
text-decoration: underline;
margin-bottom: 16px;
.section>p {
font-size: 22px;
line-height: 1;
text-align: center;
font-weight: 300;
color: #666;
margin-bottom: 70px;
.gray {
background-color: #f5f5f5;
/* imgTextType */
.imgText__inner {
display: flex;
justify-content: space-between;
.imgText__inner>div {
width: 32%;
height: 500px;
}
.imgText__txt {}
.imgText__txt span {
display: block;
font-size: 16px;
color: #666;
text-decoration: underline;
text-underline-position: under;
margin-bottom: 20px;
}
.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 {
background-color: #7c2b39;
color: #fff;
font-size: 18px;
padding: 10px 30px;
border-radius: 30px;
position: absolute;
left: 30px;
bottom: 30px;
display: inline-block;
}
.imgText__img a.blue {
background-color: #2b387c;
}
.imgText__img.img1 {
background: url(img/imgText_bg01.jpg) no-repeat center;
}
.imgText__img.img2 {
background: url(img/imgText_bg02.jpg) no-repeat center;
}
완성본
728x90
반응형
'UI|UX > 사이트유형' 카테고리의 다른 글
사이트유형 - 배너 (2) | 2022.09.06 |
---|---|
사이트유형 - 푸터 (2) | 2022.09.06 |
사이트유형 | 헤더유형 (9) | 2022.09.01 |
사이트유형 - 텍스트 유형 세 번째 (4) | 2022.09.01 |
사이트유형 - 텍스트 유형 두 번째 (4) | 2022.09.01 |
댓글