campos20

Exemplo Bootstrap

Sep 22nd, 2020
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.60 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <!-- Required meta tags -->
  5.     <meta charset="utf-8">
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.  
  8.     <!-- Bootstrap CSS -->
  9.     <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
  10.  
  11.     <title>Hello, world!</title>
  12.   </head>
  13.   <body>
  14.       <h1>Título</h1>
  15.  
  16.       <div class="container">
  17.          
  18.           <div class="row">
  19.               <div class="col-2 bg-primary text-white">
  20.                 Lista de coisas a fazer
  21.  
  22.  
  23.               </div>
  24.  
  25.               <div class="col-6 bg-danger text-white">
  26.                   Item 1
  27.  
  28.                   Item 2
  29.  
  30.                   Item 3
  31.               </div>
  32.  
  33.           </div>
  34.       </div>
  35.    
  36.  
  37.     <!-- Optional JavaScript -->
  38.     <!-- jQuery first, then Popper.js, then Bootstrap JS -->
  39.     <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
  40.     <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
  41.     <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
  42.   </body>
  43. </html>
Add Comment
Please, Sign In to add comment