Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Reserveer</title>
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
  7. <script type="text/javascript"></script>
  8. <style>
  9. .backgroundPopup{
  10. background-color: black;
  11. font-size: 80px;
  12. color: white;
  13. overflow-x: hidden;
  14. }
  15. .button{
  16. width: 300px;
  17. height: 100px;
  18. font-size: 50px;
  19. }
  20. </style>
  21. </head>
  22. <body class="backgroundPopup">
  23. <div class="row">
  24. <div class="col-lg-offset-1 col-lg-10">
  25. Hoeveel wilt u reserveren?
  26. </div>
  27. </div>
  28. <div class="row">
  29. <div class="col-lg-offset-1 col-lg-10">
  30. <input type="number" name="reserveerAantal">
  31. </div>
  32. </div>
  33. <div class="row">
  34. <div class="col-lg-offset-1 col-lg-10">
  35. <button type="button" class="btn btn-danger button"><p>Sluiten</p></button>
  36. </div>
  37. </div>
  38. </body>
  39. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement