campos20

index.html

Nov 2nd, 2020
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <!-- Required meta tags -->
  5.     <meta charset="utf-8" />
  6.     <meta
  7.      name="viewport"
  8.      content="width=device-width, initial-scale=1, shrink-to-fit=no"
  9.    />
  10.  
  11.     <!-- Bootstrap CSS -->
  12.     <link
  13.      rel="stylesheet"
  14.      href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
  15.      integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
  16.      crossorigin="anonymous"
  17.    />
  18.  
  19.     <title>Lista a Fazer</title>
  20.   </head>
  21.   <body>
  22.     <h1 class="text-center">Lista a Fazer</h1>
  23.  
  24.     <table class="table table-hover table-striped table-bordered">
  25.       <thead class="thead-dark">
  26.         <th>#</th>
  27.         <th>Descrição</th>
  28.         <th>Data</th>
  29.         <th>Feito</th>
  30.       </thead>
  31.       <tbody id="conteudo"></tbody>
  32.     </table>
  33.  
  34.     <script src="script.js"></script>
  35.  
  36.     <script
  37.      src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
  38.      integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
  39.      crossorigin="anonymous"
  40.    ></script>
  41.     <script
  42.      src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
  43.      integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
  44.      crossorigin="anonymous"
  45.    ></script>
  46.   </body>
  47. </html>
  48.  
Add Comment
Please, Sign In to add comment