코딩으로 웹디자인! 그 시작을 돕습니다.

[aiovg_video type="youtube" youtube="https://youtu.be/RUNOSUj9TrQ"]

미니코딩 안내서Code Notes

HTML


<div class="wrapper">
  <header></header>
  <div class="content">
	<img src="images/hugh.png">
	<div class="informations">
	  <strong class="year">2017</strong>
	  <h1>American Historical DramaMusical Film</h1>
	  <p>The Greatest Showman is a 2017 American historical
	  period drama musical film directed by Michael Gracey in
	  his directorial debut, written by Jenny Bicks and Bill
	  Condon and starring Hugh Jackman, Zac Efron,
	  Michelle Williams, Rebecca Ferguson, and Zendaya.
	  The film is inspired by the story of P. T. Barnum's
	  creation of the Barnum & Bailey Circus and the
	  lives of its star attractions.</p>
	  <a href="#" class="more">MORE</a>
	</div>
  </div>
  <footer>
	<em>The Greatest Showman</em>
  </footer>
</div>





				

CSS


/* Web Fonts */
	Web Fonts 부분은 영상을 참고하여 직접 작성해 보세요!
	웹폰트 적용하는 방법에 익숙해집니다.

/* CSS Resets */
	CSS Resets 부분은 영상을 참고하여 직접 작성해 보세요!
	HTML 요소와 친밀해지는 시간입니다.
	
/* Desgin Areas */
body {
   font-size: 14px;
   line-height: 1.6;
   color: #333;
   font-family: 'Quattrocento Sans', sans-serif;
   background-color: #06000d;
}

.wrapper {
   width: 1000px;
   margin: 0 auto;
}

header {
   background-image: url(images/header-bg.png);
   background-repeat: no-repeat;
   height: 587px;
}

.content {
   background-color: #b39a51;
   display: flex;
   flex-direction: row;
   padding: 45px;
}

.content img {
   margin: -90px 47px 3px 3px;
   border: #ffd96f solid 45px;
   box-shadow: 0 5px 20px rgba(0,0,0,0.35);
}

.informations .year {
   font-size: 22px;
   color: #ffeaaf;
   display: block;
   margin-bottom: 15px;
}

.informations h1 {
   font-family: 'EB Garamond', serif;
   font-size: 36px;
   line-height: 1.1;
   color: #173370;
}

.informations p {
   margin: 21px 0;
}

.informations .more {
   display: block;
   width: 100px;
   text-align: center;
   background-color: #ffd96f;
   border: 1px solid #ffd96f;
   padding: 14px 0;
   color: #6e5d2f;
}

.informations .more:hover {
   background-color: #b39a51;
   color: gold;
}

footer {
   text-align: center;
   color: #9a895a;
   background-color: #0c042d;
   padding: 40px 0;
}





				

참고사항

아래에 명시한 내용을 참고할 수 있습니다.

헤더 배경 이미지 사이즈
1000 x 57
인물 이미지 사이즈
250 x 334
사용된 웹폰트
Quattrocento Sans(400, 700) / Google Fonts
EB Garamond(400, 700) / Google Fonts
사용된 텍스트
The Greatest Showman / Wikipedia
사용된 브라우저
NAVER Whale
사용된 코드 에디터
Visual Studio Code

커피 한 잔으로 후원하기

콘텐츠를 제작하는데 아주 큰 힘이 됩니다.

한 아름 받아가기

일부 자세한 설명을 한 아름 받아 가세요!

[aiovg_video type="youtube" youtube="https://youtu.be/xoULU4xbXuQ"]