<header> 태그안에 메뉴, <figure>태그 안에 <video> 태그를 활용한 비주얼 영억, 가운데 <section>태그에는 콘텐츠 영역, 마지막 <footer>태그에는 기업 정보
<header>태그로 그룹을 묶고, 자식인 <div> 태그에 클래스명 inner를 추가해 로고, 메뉴와 같은 실제 콘텐츠를 가로 가운데로 정렬해 줄 그룹을 만든다.<h1> 태그로 작성.<ul>태그를 생성하고 id를 gnb라고 설정실무에서 기업형 웹 페이지를 제작할 때 주 메뉴의 아이디명을 'gnb'라고 쓰는데 이것은 global navigation bar의 약자.
util

absolute로 설정하는 이유는 float로 배치할 때 HTML의 콘텐츠 순서를 변경할 수 없기 때문
absolute를 이용하여 .inner 안쪽 왼쪽 상단에 배치한 뒤 각 메뉴를 float로 배치

<head>
<style type="text/css">
.video-background {
background: #000;
position: fixed;
top: 0; right: 0; bottom: 0; left: 0;
z-index: -99;
}
.video-foreground,
.video-background iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
}
@media (min-aspect-ratio: 16/9) {
.video-foreground { height: 300%; top: -100%; }
}
@media (max-aspect-ratio: 16/9) {
.video-foreground { width: 300%; left: -100%; }
}
</style>
</head>
<body>
<div class="video-background">
<div class="video-foreground">
<iframe src="https://www.youtube.com/embed/sbc2yBheAbo?controls=0&showinfo=0&rel=0&autoplay=1&loop=1&playlist=sbc2yBheAbo" frameborder="0" allowfullscreen></iframe>
</div>
</div>

calc()는 괄호 안에 수칫값과 연산자 사이를 무조건 한 칸씩 띄어야 연산 오류를 방지할 수 있다.

<article> 태그 4개를 묶어서 float를 해체할 <div class="wrap">태그를 작성



