Тег <header></header>




Этот тег определяет верхний колонтитул для документа или раздела.




style.css
  • * {
  •  margin: 0;
  •  padding: 0;
  • }
  •  
  • header {
  •  width: 818px;
  •  height: 273px;
  •  margin: 5px auto;
  •  background-color: #EEFCCD;
  • }
  •  
  • .between {
  •  width: 818px;
  •  height: 3px;
  •  background-color: #EEFCCD;
  •  float: left;
  • }
  •  
  • .top {
  •  width: 818px;
  •  height: 230px;
  •  float: left;
  • }
  •  
  • .top a {
  •  float: left;
  • }
  •  
  • .a {
  •  width: 415px;
  •  height: 230px;
  •  float: left;
  •  text-align: center;
  •  line-height: 230px;
  •  font-size: 76px;
  •  color: #7092BE;
  • }
  •  
  • .b {
  •  width: 200px;
  •  height: 230px;
  •  float: left;
  •  display: table;
  •  text-align: center;
  • }
  •  
  • .b p {
  •  display: table-cell;
  •  vertical-align: middle;
  •  font-size: 20px;
  •  color: #7092BE;
  • }
  •  
  • .bottom {
  •  width: 818px;
  •  height: 40px;
  •  float: left;
  • }
  •  
  • .bottom a p {
  •  width: 203px;
  •  height: 40px;
  •  float: left;
  •  background-color: #3BA9DE;
  •  text-align: center;
  •  line-height: 40px;
  •  font-size: 22px;
  •  color: white;
  • }
  •  
  • .bottom a p:hover {
  •  width: 203px;
  •  height: 40px;
  •  float: left;
  •  background-color: #EEFCCD;
  •  text-align:center;
  •  line-height: 40px;
  •  font-size: 22px;
  •  color: #3BA9DE;
  •  -moz-transition: all 0.5s ease-in-out;
  •  -webkit-transition: all 0.5s ease-in-out;
  •  -o-transition: all 0.5s ease-in-out;
  •  -ms-transition: all 0.5s ease-in-out;
  •  transition: all 0.5s ease-in-out;
  • }
  •  
  • .bottom p {
  •  width: 2px;
  •  height: 40px;
  •  float: left;
  •  background-color: #EEFCCD;
  • }
  • * {
  •  margin: 0;
  •  padding: 0;
  • }
  •  
  • header {
  •  width: 818px;
  •  height: 273px;
  •  margin: 5px auto;
  •  background-color: #EEFCCD;
  • }
  •  
  • .between {
  •  width: 818px;
  •  height: 3px;
  •  background-color: #EEFCCD;
  •  float: left;
  • }
  •  
  • .top {
  •  width: 818px;
  •  height: 230px;
  •  float: left;
  • }
  •  
  • .top a {
  •  float: left;
  • }
  •  
  • .a {
  •  width: 415px;
  •  height: 230px;
  •  float: left;
  •  text-align: center;
  •  line-height: 230px;
  •  font-size: 76px;
  •  color: #7092BE;
  • }
  •  
  • .b {
  •  width: 200px;
  •  height: 230px;
  •  float: left;
  •  display: table;
  •  text-align: center;
  • }
  •  
  • .b p {
  •  display: table-cell;
  •  vertical-align: middle;
  •  font-size: 20px;
  •  color: #7092BE;
  • }
  •  
  • .bottom {
  •  width: 818px;
  •  height: 40px;
  •  float: left;
  • }
  •  
  • .bottom a p {
  •  width: 203px;
  •  height: 40px;
  •  float: left;
  •  background-color: #3BA9DE;
  •  text-align: center;
  •  line-height: 40px;
  •  font-size: 22px;
  •  color: white;
  • }
  •  
  • .bottom a p:hover {
  •  width: 203px;
  •  height: 40px;
  •  float: left;
  •  background-color: #EEFCCD;
  •  text-align:center;
  •  line-height: 40px;
  •  font-size: 22px;
  •  color: #3BA9DE;
  •  -moz-transition: all 0.5s ease-in-out;
  •  -webkit-transition: all 0.5s ease-in-out;
  •  -o-transition: all 0.5s ease-in-out;
  •  -ms-transition: all 0.5s ease-in-out;
  •  transition: all 0.5s ease-in-out;
  • }
  •  
  • .bottom p {
  •  width: 2px;
  •  height: 40px;
  •  float: left;
  •  background-color: #EEFCCD;
  • }


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <header>
  •   <div class="top">
  •    <a href="#"><img src="img/yacht.jpg" /></a>
  •    <div class="a">Yacht-club</div>
  •    <div class="b">
  •     <p>phone<br />8(800)700-500-00-01</p>
  •    </div>
  •   </div>
  •   <div class="between"></div>
  •   <nav class="bottom">
  •    <a href="#"><p>Main</p></a>
  •    <p></p>
  •    <a href="#"><p>Yachts</p></a>
  •    <p></p>
  •    <a href="#"><p>About us</p></a>
  •    <p></p>
  •    <a href="#"><p>Contacts</p></a>
  •   </nav>
  •  </header>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <header>
  •   <div class="top">
  •    <a href="#"><img src="img/yacht.jpg" /></a>
  •    <div class="a">Yacht-club</div>
  •    <div class="b">
  •     <p>phone<br />8(800)700-500-00-01</p>
  •    </div>
  •   </div>
  •   <div class="between"></div>
  •   <nav class="bottom">
  •    <a href="#"><p>Main</p></a>
  •    <p></p>
  •    <a href="#"><p>Yachts</p></a>
  •    <p></p>
  •    <a href="#"><p>About us</p></a>
  •    <p></p>
  •    <a href="#"><p>Contacts</p></a>
  •   </nav>
  •  </header>
  • </body>
  • </html>