Advertisement
Guest User

Untitled

a guest
Sep 20th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.98 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pt-br">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Mobile</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.     <meta name="description" content="Criando layout responsivo">
  8.     <meta name="keywords" content="cursos online, cursos web">
  9.     <meta name="author" content="fulano lima">
  10.  
  11.     <link rel="stylesheet" href="_css/estilo.css">
  12. </head>
  13. <body>
  14.  
  15. <div class="container">
  16.    
  17.     <header>
  18.         <h1>Logo</h1>
  19.         <nav>
  20.             <ul>
  21.                 <li><a href="">Inicio</a></li>
  22.                 <li><a href="">Sobre nós</a></li>
  23.                 <li><a href="">Contatos</a></li>
  24.             </ul>
  25.         </nav>
  26.     </header>
  27.    
  28.     <article class="banner-1">
  29.         <div class="fundo-banner-1">
  30.             <h1>New Lorem Ipsum</h1>
  31.             <h2>Lorem Ipsum</h2>
  32.         </div>
  33.     </article>
  34.  
  35. </div>
  36.  
  37. </body>
  38. </html>
  39.  
  40. -------------------------------------------------------------
  41.  
  42. *{
  43.     margin: 0;
  44.     padding: 0;
  45.     font-family: sans-serif;
  46.     color: #555;
  47. }
  48.  
  49. /*CABEÇALHO*/
  50. header, section, img, article, figure, figcaption{
  51.     width: 100%;
  52.     box-sizing: border-box;
  53. }
  54.  
  55. header{
  56.     height: 50px;
  57.     background-color: #ccc;
  58. }
  59. header h1{
  60.     font-size: 2em;
  61.     line-height: 50px;
  62.     margin-left: 20px;
  63.     cursor: pointer;
  64.     float: left;
  65. }
  66.  
  67. /*MENU*/
  68. nav ul{
  69.     float: right;
  70. }
  71. nav ul li{
  72.     list-style-type: none;
  73.     float: left;
  74.     padding: 15px;
  75.     cursor: pointer;
  76. }
  77. nav ul li:hover{
  78.     background-color: #666;
  79. }
  80. nav ul li:hover a{ 
  81.     color: #ccc;
  82. }
  83. nav ul li a{
  84.     text-decoration: none;
  85. }
  86. /*FIM CABEÇALHO E MENU*/
  87.  
  88. /*---------------------------------------*/
  89.  
  90. /*BANNER-1*/
  91. .banner-1{
  92.     background-image: url(https://static.lolwallpapers.net/2015/12/blood-moon-akali-932x620.png);
  93.     background-size: 100%;
  94.     background-repeat: no-repeat;
  95.     height: 400px;
  96. }
  97.  
  98. .fundo-banner-1{
  99.     text-align: center;
  100.     background-color: rgba(0,0,0,.5);
  101.     width: 100%;
  102.     height: 100%;
  103. }
  104.  
  105. .fundo-banner-1 h1{
  106.     color: #fff;
  107.     font-size: 2.5em;
  108.     padding-top: 80px;
  109. }
  110.  
  111. .fundo-banner-1 h2{
  112.     color: #fff;
  113.     font-size: 2em;
  114.     padding-top: 20px;
  115. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement