campos20

index.html

Nov 2nd, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.19 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.             <label for="feito-input">Feito</label>
  41.             <input id="feito-input" type="checkbox" />
  42.           </div>
  43.           <div class="col">
  44.             <button class="btn btn-primary form-control">Adicionar</button>
  45.           </div>
  46.         </div>
  47.       </form>
  48.  
  49.       <table class="table table-hover table-striped table-bordered">
  50.         <thead class="thead-dark">
  51.           <th>#</th>
  52.           <th>Descrição</th>
  53.           <th>Data</th>
  54.           <th>Feito</th>
  55.           <th></th>
  56.         </thead>
  57.         <tbody id="conteudo"></tbody>
  58.       </table>
  59.     </div>
  60.  
  61.     <script src="script.js"></script>
  62.  
  63.     <script
  64.      src="https://code.jquery.com/jquery-3.5.1.slim.min.js"
  65.      integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj"
  66.      crossorigin="anonymous"
  67.    ></script>
  68.     <script
  69.      src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js"
  70.      integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx"
  71.      crossorigin="anonymous"
  72.    ></script>
  73.   </body>
  74. </html>
  75.  
Add Comment
Please, Sign In to add comment