Advertisement
Guest User

Untitled

a guest
Jul 20th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Bus Schedule</title>
  6.     <style>
  7.         #schedule { text-align: center; width: 400px; }
  8.         input { width: 120px; }
  9.         #info { background-color:aquamarine; border:1px solid black; margin:0.25em; }
  10.         .info { font-size: 1.5em; padding: 0.25em; }
  11.     </style>
  12.     <script src="../jquery-3.3.1.js"></script>
  13.     <script src="app.js"></script>
  14. </head>
  15. <body>
  16. <div id="schedule">
  17.     <div id="info"><span class="info">Not Connected</span></div>
  18.     <div id="controls">
  19.         <input id="depart" value="Depart" type="button" onclick="result.depart()">
  20.         <input id="arrive" value="Arrive" type="button" onclick="result.arrive()" disabled="true">
  21.     </div>
  22. </div>
  23. </body>
  24. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement