campos20

index.html

Nov 2nd, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.02 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.     <div class="container">
  23.       <h1 class="text-center">Lista a Fazer</h1>
  24.  
  25.       <form class="my-3" id="formulario">
  26.         <div class="form-row">
  27.           <div class="col">
  28.             <input
  29.              id="descricao-input"
  30.              type="text"
  31.              class="form-control"
  32.              placeholder="Descrição da tarefa"
  33.              required
  34.            />
  35.           </div>
  36.           <div class="col">
  37.             <input id="data-input" type="date" class="form-control" required />
  38.           </div>
  39.           <div class="col">
  40.             <button class="btn btn-primary form-control">Adicionar</button>
  41.           </div>
  42.         </div>
  43.       </form>
  44.  
  45.       <table class="table table-hover table-striped table-bordered">
  46.         <thead class="thead-dark">
  47.           <th>#</th>
  48.           <th>Descrição</th>
  49.           <th>Data</th>
  50.           <th>Feito</th>
  51.         </thead>
  52.         <tbody id="conteudo"></tbody>
  53.       </table>
  54.     </div>
  55.  
  56.     <script src="script.js"></script>
  57.  
  58.     <script
  59.      src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
  60.      integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
  61.      crossorigin="anonymous"
  62.    ></script>
  63.     <script
  64.      src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
  65.      integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
  66.      crossorigin="anonymous"
  67.    ></script>
  68.   </body>
  69. </html>
  70.  
Add Comment
Please, Sign In to add comment