Advertisement
joaopaulofcc

Untitled

Feb 23rd, 2022
744
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.09 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4.   <head>
  5.       <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
  6.        rel="stylesheet"
  7.        integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
  8.        crossorigin="anonymous">
  9.   </head>
  10.  
  11.   <body>
  12.     <form>
  13.         <div class="form-check form-check-inline">
  14.             <input class="form-check-input" type="checkbox" id="inlineCheckbox1" value="opcao1">
  15.             <label class="form-check-label" for="inlineCheckbox1">1</label>
  16.           </div>
  17.           <div class="form-check form-check-inline">
  18.             <input class="form-check-input" type="checkbox" id="inlineCheckbox2" value="opcao2">
  19.             <label class="form-check-label" for="inlineCheckbox2">2</label>
  20.           </div>
  21.           <div class="form-check form-check-inline">
  22.             <input class="form-check-input" type="checkbox" id="inlineCheckbox3" value="opcao3" disabled>
  23.             <label class="form-check-label" for="inlineCheckbox3">3 (desativado)</label>
  24.           </div>
  25.     </form>
  26.   </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement