728x90
헤더유형01
오늘은 사이트만들기에서 헤더유형을 제작해 보겠습니다. 단순하기 때문에 간단하게 만들 수 있습니다.
1. Figma로 디자인하기
Figma를 이용해 그리드를 나누어 전체적인 틀을 만들어줍니다.
2. HTML
웹표준 준수를 위해 시맨틱 태그를 사용합니다.
<section id="headerType01" class="header__wrap nexon">
<div class="header__inner">
<div class="header__logo">
<a href="#">Web <em>site</em></a>
</div>
<nav class="header__menu">
<ul>
<li><a href="#">헤더 영역</a></li>
<li><a href="#">슬라이드 영역</a></li>
<li><a href="#">배너 영역</a></li>
<li><a href="#">컨텐츠 영역</a></li>
<li><a href="#">푸터 영역</a></li>
</ul>
</nav>
<div class="header__member">
<a href="#">로그인</a>
</div>
</div>
</section>
3. CSS
Figma를 이용해 만든 디자인을 보며 css설정을 합니다. display: flex;와 justify-content: space-between;를 사용하여 정렬을 맞춰줍니다.
/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');
.Nexon {
font-family: 'NexonLv1Gothic';
font-weight: 400;
}
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
img {
width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
}
em,
i,
address {
font-style: normal;
}
/* common */
.container {
width: 1160px;
padding: 0 20px;
margin: 0 auto;
min-width: 1160px;
}
.section {
padding: 120px 0;
}
.section>h2 {
font-size: 50px;
line-height: 1;
margin-bottom: 20px;
text-align: center;
}
.section>p {
font-size: 22px;
font-weight: 300;
color: #666;
margin-bottom: 70px;
text-align: center;
}
.section > span {
display: block;
text-align: center;
font-size: 16px;
text-decoration: underline;
margin-bottom: 16px;
}
.mb70 {
margin-bottom: 70px !important;
}
/* headerType */
.header__inner {
width: 100%;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
box-sizing: border-box;
border-bottom: 1px solid #ccc;
}
.header__logo {
width: 20%;
font-size: 30px;
font-weight: 700;
text-transform: uppercase;
}
.header__logo em {
font-size: 18px;
font-weight: 400;
}
.header__menu {
width: 60%;
text-align: center;
}
.header__menu li {
display: inline;
}
.header__menu li a {
padding: 13px 30px;
margin: 0 5px;
transition: background-color 0.3s;
}
.header__menu li:hover {
background-color: #f1f1f1;
border-radius: 5px;
}
.header__member {
width: 20%;
text-align: right;
}
.header__member a {
font-size: 16px;
border: 1px solid #000;
padding: 10px 30px;
border-radius: 50px;
transition: all 0.3s;
}
.header__member a:hover {
background-color: #000;
color: #fff;
}
최종결과
728x90
반응형
'웹 사이트 제작' 카테고리의 다른 글
[웹 사이트 제작]슬라이드유형 01 (3) | 2022.09.05 |
---|---|
[웹 사이트 제작]이미지/텍스트 유형 01 (5) | 2022.09.01 |
[웹 사이트 제작]텍스트유형 03 (4) | 2022.08.31 |
[웹 사이트 제작]텍스트유형 02 (4) | 2022.08.31 |
[웹 사이트 제작]텍스트유형 01 (2) | 2022.08.30 |
댓글