728x90
반응형
사이트 만들기 : 텍스트유형02
텍스트 유형을 만들어봅시다.
Figma
코드를 진행하기에 앞서, 피그마를 이용해서 웹사이트를 디자인합니다.
CSS
/* fonts */
@import url('https://webfontworld.github.io/gmarket/GmarketSans.css');
.gmark {
font-family: GmarketSans;
font-weight: 500;
}
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
}
#textType {
width: 1160px;
margin: 0 auto;
padding: 120px 0;
display: flex;
justify-content: space-between;
}
.text__header {
width: 40%;
height: 100%;
}
.main__logo {
margin-bottom: 10px;
width: 150px;
height: 22px;
background-color: #fbbc05;
color: #000;
border-radius: 50px;
position: relative;
}
.main__logo .logo {
position: absolute;
text-align: center;
line-height: 1.4;
font-size: 14px;
top: 1px;
left: 37px;
}
.text__header h1 {
font-size: 40px;
line-height: 1.4;
font-weight: bold;
margin-bottom: 36px;
}
.text__header p {
font-size: 18px;
line-height: 1.4;
color: #666;
}
.container {
width: 60%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.text__box {
width: 48%;
margin-bottom: 35px;
}
.text__img {
width: 60px;
height: 60px;
margin-top: 10px;
margin-bottom: 10px;
}
.text__desc h2 {
font-size: 24px;
margin-bottom: 20px;
}
.text__desc p {
font-size: 18px;
font-weight: 300;
line-height: 1.4;
color: #666;
margin-bottom: 20px;
}
HTML
<section id="textType" class="text__wrap gmark section">
<header class="text__header">
<div class="main__logo">
<p class="logo">
javascript
</p>
</div>
<h1>
자바스크립트<br>
알아보기
</h1>
<p>객체 기반의 스크립트 프로그래밍 언어.<br>
웹 브라우저 내에서 주로 사용.<br>
다른 응용 프로그램의 내장 객체에도 접근.
</p>
</header>
<div class="container">
<article class="text__box">
<figure class="text__img">
<img src="img/logo1.png" alt="아이콘" />
</figure>
<div class="text__desc">
<h2>자바스크립트</h2>
<p>객체 기반의 스크립트 프로그래밍 언어.<br>
웹 브라우저 내에서 주로 사용.<br>
다른 응용 프로그램의 내장 객체에도 접근.
</p>
</div>
</article>
<article class="text__box">
<figure class="text__img">
<img src="img/logo2.png" alt="아이콘" />
</figure>
<div class="text__desc">
<h2>자바스크립트</h2>
<p>객체 기반의 스크립트 프로그래밍 언어.<br>
웹 브라우저 내에서 주로 사용.<br>
다른 응용 프로그램의 내장 객체에도 접근.
</p>
</div>
</article>
<article class="text__box">
<figure class="text__img">
<img src="img/logo3.png" alt="아이콘" />
</figure>
<div class="text__desc">
<h2>자바스크립트</h2>
<p>객체 기반의 스크립트 프로그래밍 언어.<br>
웹 브라우저 내에서 주로 사용.<br>
다른 응용 프로그램의 내장 객체에도 접근.
</p>
</div>
</article>
<article class="text__box">
<figure class="text__img">
<img src="img/logo4.png" alt="아이콘" />
</figure>
<div class="text__desc">
<h2>자바스크립트</h2>
<p>객체 기반의 스크립트 프로그래밍 언어.<br>
웹 브라우저 내에서 주로 사용.<br>
다른 응용 프로그램의 내장 객체에도 접근.
</p>
</div>
</article>
</div>
</section>
728x90
반응형