Advertisement
iaematt

Grid Template HTML

Jun 1st, 2020
2,240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.81 KB | None | 0 0
  1. <html lang="pt-br">
  2.   <head>
  3.     <meta charset="UTF-8" />
  4.     <meta name="viewport" content="width=device-width,initial-scale=1" />
  5.  
  6.     <link
  7.       href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap"
  8.       rel="stylesheet"
  9.     />
  10.     <link href="styles.css" type="text/css" rel="stylesheet" />
  11.  
  12.     <title>Flex Box</title>
  13.   </head>
  14.  
  15.   <body>
  16.     <header class="menu">
  17.       <div class="container">
  18.         <h1>Logo</h1>
  19.       </div>
  20.     </header>
  21.  
  22.     <section class="container grid-template">
  23.       <div class="box blue"></div>
  24.       <div class="box yellow"></div>
  25.       <div class="box green"></div>
  26.       <div class="box purple"></div>
  27.       <div class="box red"></div>
  28.       <div class="box orange"></div>
  29.     </section>
  30.   </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement