Advertisement
Guest User

Untitled

a guest
Jul 18th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.95 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Cams</title>
  7. </head>
  8.  
  9. <style>
  10.     html, body {
  11.         height: 100%;
  12.         width: 100%;
  13.         margin: 0;
  14.     }
  15. </style>
  16.  
  17. <body>
  18. <div style="display: inline-flex; width: 100%; height: 100%">
  19.     <div style="display: inline-flex;flex-direction: column">
  20.         <div style="display: inline-flex; margin: 3px">
  21.             <input type="button" id="btn_previous" value="<">
  22.             <input type="date" id="calendar">
  23.             <input type="button" id="btn_next" value=">">
  24.         </div>
  25.         <select id="list" style="width: 100%; height: 100%; font-family: monospace" size="2"></select>
  26.     </div>
  27.     <div style="display: inline-flex; flex: 1">
  28.         <video id="video" style="width: 100%; height: 100%">
  29.             Your browser does not support the video tag.
  30.         </video>
  31.     </div>
  32. </div>
  33. <script src="/js/main.js"></script>
  34. </body>
  35.  
  36. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement