index.html 616 B

1234567891011121314151617181920212223242526
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>RC Control</title>
  6. <meta name="description" content="RC Car Control">
  7. <meta name="author" content="Tankernn">
  8. <link rel="stylesheet" href="css/style.css">
  9. </head>
  10. <body>
  11. <form id="settings">
  12. <input type="text" id="control_url" placeholder="ws://..." />
  13. <input type="text" id="stream_url" placeholder="http://..." />
  14. <button id="connect">Connect</button>
  15. </form>
  16. <div id="stream">
  17. </div>
  18. <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script>
  19. <script src="js/script.js"></script>
  20. </body>
  21. </html>