레이아웃 연습
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alfredo gonzales</title>
<link href="./style.css" rel="stylesheet" type="text/css"/>
<style>
</style>
</head>
<body>
<header>
<a href="#" class="logo">Alfredo<br/>gonzales</a>
<ul>
<li><a href="#"><img src="img/menu01.png" alt=""/>home</a></li>
<li><a href="#"><img src="img/menu02.png" alt=""/>shop</a></li>
<li><a href="#"><img src="img/menu03.png" alt=""/>custombox</a></li>
<li><a href="#"><img src="img/menu04.png" alt=""/>blog</a></li>
<li><a href="#"><img src="img/menu05.png" alt=""/>story</a></li>
</ul>
</header>
<section id="mainBg">
<div class="left">
<img src="img/header01.jpg" alt=""/>
</div>
<div class="right">
<img src="img/side01.jpg" alt=""/>
<div class="tbox">
<p>DESIGN YOUR OWNSOCK</p>
<h1>THE WORKSHOP</h1>
<div class="line"></div>
</div>
<div class="tbox">
<p>SELF SERVICE</p>
<h1>ONLINE STORE</h1>
<div class="line"></div>
</div>
</div>
</section>
<section id="section01">
<div class="left">
<img src="img/banner_01.jpg" alt=""/>
<div class="ibox">
<iframe src="https://player.vimeo.com/video/104136276"
width="784"
height="480"
frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>
</div>
<div class="right">
<img src="img/banner_02.jpg" alt=""/>
</div>
</section>
<section id="section02">
<img src="img/banner_03.jpg"/>
<img src="img/banner_04.jpg"/>
<img src="img/banner_05.jpg"/>
</section>
<footer>
<div class="left">
</div>
<div class="right">
<div class="ibox">
<iframe src="https://player.vimeo.com/video/58451361"
width="800"
height="340"
frameborder="0"
webkitallowfullscreen mozallowfullscreen allowfullscreen>
</iframe>
</div>
<form>
<div class="center">
<label>SIGN UP</label>
<input type="email" placeholder="YOUR EMAIL ADDRESS" name="em"/>
<button type="button">></button>
</div>
</form>
</div>
<div class="footerlogo">
Alfredo<br/>gonzales
</div>
</footer>
</body>
<script>
</script>
</html>
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Raleway:wght@100;200;300;400;500;600;700;800&display=swap');
*{
padding: 0; margin: 0; font-family: 'Raleway', sans-serif;
}
ul,ol{
list-style: none;
}
img{
display: block;
}
a{
text-decoration: none; color: #333;
}
header{
width: 1600px;
overflow: hidden;
margin: 0 auto;
text-align: center;
padding: 40px 0px;
}
.logo{
font-family: 'Caveat', cursive;
font-size: 35px;
line-height: 26px;
font-weight: 900;
display: block;
}
header ul{
display: inline-block;
overflow: hidden;
}
header li{
float: left;
margin: 20px;
text-align: center;
}
header li img{
margin: 0 auto;
}
header li a{
font-weight: 600;
display: block;
padding-bottom: 5px;
}
header li:hover a{
border-bottom: 2px solid #f00;
}
section{
width: 1600px;
overflow: hidden;
margin: 0 auto;
}
#mainBg>.left{
width: 1274px;
float: left;
}
#mainBg>.right{
width: 316px;
overflow: hidden;
float: right;
}
#mainBg .tbox{
width: 316px;
height: 160px;
border: 5px solid #000;
text-align: center;
padding: 15px 0px;
box-sizing: border-box;
margin-top: 10px;
background-image: url(./img/box_bg.png);
}
#mainBg .tbox>p{
font-size: 18px;
}
#mainBg .tbox>h1{
margin: 15px 0px;
}
#mainBg .tbox>.line{
width: 40px;
height: 2px;
background-color: #000;
margin: 0 auto;
}
#section01{
margin-top: 30px;
}
#section01>.left{
width: 784px;
overflow: hidden;
float: left;
}
#section01>.right{
width: 785px;
float: right;
}
#section01 .ibox{
width: 784px;
height: 481px;
background-color: #000;
margin-top: 30px;
overflow: hidden;
}
#section02 img{
margin-top: 30px;
}
footer{
width: 1600px;
overflow: hidden;
margin: 0 auto;
margin-top: 30px;
}
footer>.left{
width: 790px;
height: 500px;
float: left;
background-image: url(./img/banner_bg.jpg);
background-size: 790px 500px;
}
footer>.right{
width: 800px;
float: right;
overflow: hidden;
}
footer .ibox{
width: 800px;
height: 340px;
background-color: #000;
overflow: hidden;
margin-bottom: 10px;
}
footer form{
width: 800px;
height: 150px;
background-color: #e68238;
text-align: center;
overflow: hidden;
}
footer .center{
display: inline-block;
height: 40px;
margin: 55px 0px;
}
footer label{
font-size: 18px;
line-height: 40px;
font-weight: 800;
display: block;
float: left;
margin-right: 15px;
}
footer input[type="email"]{
width: 250px;
height: 40px;
display: block;
float: left;
padding-left: 20px;
font-size: 18px;
border: none;
}
footer button{
display: block;
float: left;
border: none;
padding: 0px 10px;
height: 40px;
font-size: 14px;
color: #fff;
background-color: #000;
}
.footerlogo{
text-align: center;
font-weight: 900;
font-size: 30px;
clear: both;
padding: 30px 0px;
}
