Advertisement
Stiliyan_Koev

bootstrap-intro

Mar 10th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.19 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Title</title>
  6.     <link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="stylesheet">
  7.     <link rel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css"/>
  8. </head>
  9. <body>
  10. <form class="form-inline">
  11.     <label class="sr-only" for="inlineFormInputName2">Name</label>
  12.     <input type="text" class="form-control mb-2 mr-sm-2" id="inlineFormInputName2" placeholder="Jane Doe">
  13.  
  14.     <label class="sr-only" for="inlineFormInputGroupUsername2">Username</label>
  15.     <div class="input-group mb-2 mr-sm-2">
  16.         <div class="input-group-prepend">
  17.             <div class="input-group-text">@</div>
  18.         </div>
  19.         <input type="text" class="form-control" id="inlineFormInputGroupUsername2" placeholder="Username">
  20.     </div>
  21.  
  22.     <div class="form-check mb-2 mr-sm-2">
  23.         <input class="form-check-input" type="checkbox" id="inlineFormCheck">
  24.         <label class="form-check-label" for="inlineFormCheck">
  25.             Remember me
  26.         </label>
  27.     </div>
  28.  
  29.     <button type="submit" class="btn btn-primary mb-2">Submit</button>
  30. </form>
  31. </body>
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement