Advertisement
ph4x35ccb

nth-child aula canal kjnetsecuryt tutorias Yotube

Aug 11th, 2019
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.40 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>Kjnetsecuryt</title>
  7.     <style>
  8.         *{
  9.             margin: 0;
  10.             padding: 0;
  11.             text-decoration: none;
  12.             list-style: none;
  13.             font-size: 18px;
  14.         }
  15.         body{
  16.  
  17.         }
  18.         header{
  19.             width: 100%;
  20.             position: fixed;
  21.             display: flex;
  22.             justify-content: center;
  23.             background-color: #cecece;
  24.         }
  25.         header ul {
  26.             max-width: 900px;
  27.             height: 60px;
  28.             display: flex;
  29.         }
  30.         li{
  31.             margin: 0 auto;
  32.             padding: 20px 20px;
  33.         }
  34.         header li a{
  35.             color: #fff;
  36.             font-weight: 900;
  37.         }
  38.         section{
  39.             height: 100vh;
  40.             display: grid;
  41.             justify-content: center;
  42.             align-content: center;
  43.         }
  44.         main section:nth-child(odd){
  45.             background-color: #A9A9A9;
  46.             font-size: 2em;
  47.             color: #fff;
  48.         }
  49.         main section:nth-child(even){
  50.             background-color: #D3D3D3;
  51.             font-size: 2em;
  52.             color: #A9A9A9;
  53.         }
  54.     </style>
  55. </head>
  56. <body>
  57.     <header>
  58.         <nav>
  59.             <div class="menu">
  60.                 <ul>
  61.                     <li><a href="#home">Home</a></li>
  62.                     <li><a href="#sobre">Sobre</a></li>
  63.                     <li><a href="#produtos">Produtos</a></li>
  64.                     <li><a href="#contato">Contato</a></li>
  65.                 </ul>
  66.             </div>
  67.         </nav>
  68.     </header>
  69.     <main>
  70.     <section id="home">Home</section>
  71.     <section id="sobre">Sobre</section>
  72.     <section id="produtos">Produtos</section>
  73.     <section id="contato">Contato</section>
  74.     </main>
  75. </body>
  76. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement