Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang='ru'>
- <head>
- <meta charset="utf-8">
- <title>Магазин досок</title>
- <link rel="stylesheet" href="style.css">
- </head>
- <body>
- <header>
- <div class="wrapperHeader">
- <div class="logo">
- <div class="imgLogo">
- <a href="index.html">
- <img src="images/surfhouseLogo.png" alt="Логотип">
- </a>
- </div>
- <div class="soc">
- </div>
- </div>
- <div class="hello">
- </div>
- <div class="hot">
- <h2>JP FUNRIDE 2014</h2>
- <p>
- Super easy coing freerade boards
- based by X-clipt concept with
- aditonal control and super easy bijjing!
- </p>
- <a href="#" >Buy now</a>
- </div>
- </div>
- </header>
- <div class="content">
- <div class="wrapperContent">
- <div class="contentLeft">
- </div>
- <div class="contentRight">
- </div>
- <div class="subfuter">
- <div class="brand">
- </div> <!-- Дополнительно после курса js -->
- <div class="instagramm"> <!-- Можно получить из instagramm API -->
- </div>
- <div class="socBig"><!-- Сервис предоставления соц.кнопок -->
- </div>
- </div>
- </div>
- <footer>
- <div class="footerMenu"><!-- флексбокс -->
- </div>
- <div class="copSoc">
- <!--Копирайт и соцкнопки -->
- </div>
- </footer>
- </div>
- </body>
- </html>
- @font-face {
- font-family: Raleway-Bold; /* Имя шрифта */
- src: url(fonts/Raleway-Bold.ttf);
- }
- @font-face {
- font-family: Raleway-Regular;
- src: url(fonts/Raleway-Regular.ttf);
- }
- html,body{
- margin: 0;
- }
- header{
- background: gray;
- height: 700px;
- }
- .wrapperHeader{
- width: 1150px;
- margin: 0 auto;
- background: blue;
- }
- .wrapperHeader:after{
- display: block;
- content: '';
- clear: both;
- }
- .logo{
- height: 150px;
- margin:0 auto;
- background: #234213;
- }
- .logo:after{
- display: block;
- content: '';
- clear: both;
- }
- .imgLogo {
- float: left;
- }
- .imgLogo a{
- display: inline-block;
- margin: 20px 0 0 70px; /* верх низ право лево*/
- }
- .soc{
- background: #456789;
- display: inline-block;
- height: 10px;
- width: 100px;
- float: right;
- margin: 50px 120px 0 0;
- }
- .hello{
- width: 270px;
- height: 300px;
- margin: 185px auto 0;
- float: left;
- background: white;
- }
- .hot{
- width: 320px;
- float: right;
- background: white;
- margin: 100px 30px;
- }
- .hot h2{
- font-size:45px;
- display: inline-block;
- font-family: 'Raleway-Bold';
- color:#fffa8f;
- line-height: 40px;
- margin: 0;
- }
- .hot p {
- font-size: 20px;
- font-family: 'Raleway-Regular';
- color:#fffa8f;
- line-height: 24px;
- margin:0 0 30px 0;
- }
- .hot a{
- display: inline-block;
- text-decoration: none;
- padding: 20px;
- background: #fffa8f;
- font-family: 'Raleway-Bold';
- color:black;
- }
- .wrapperContent{
- width: 1150px;
- padding-top: 20px;
- margin:0 auto;
- background: #235212;
- }
- .wrapperContent:after{
- display: block;
- content: '';
- clear: both;
- }
- .content{
- background: green;
- }
- .contentLeft{
- width: 23%;
- height: 400px;
- float: left;
- background: orange;
- margin: -40px auto 0;
- }
- .contentRight{
- float: right;
- width:75%;
- height: 400px;
- background: #241245;
- margin: -40px auto 0;
- }
- .subfuter{
- background: #df4324;
- height: 200px;
- clear: both;
- }
- .photo{
- background: #e34;
- height: 200px;
- }
- footer{
- background: yellow;
- height: 300px;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement