Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Assignment2</title>
  4. <style>
  5. div {
  6. float :left;
  7. background-color:#000000;
  8. height:100px;
  9. width:200px;
  10. color:#FFFFFF;
  11. text align:center;
  12. font-size:100
  13. }
  14. div.sc {
  15. float :right;
  16. background-color:#808080;
  17. height: 100px;
  18. width: 200px;
  19. color: #FFFFFF;
  20. text align: center;
  21. font-size: 100
  22. }
  23. </style>
  24. <script type="javascript">
  25. var username;
  26. function myfunction(){
  27. username= prompt("What is your name?");
  28. document.getElementById("start").innerHTML="username"
  29. }
  30. function right(){
  31. document.getElementById("start").innerHTML="username";
  32. }
  33. function left(){
  34. document.getElementById("R").innerHTML="username";
  35. }
  36. </script>
  37. </head>
  38. <body>
  39. <input type="button" onclick="myfunction()">Start</input>
  40. <button type="button" onclick="reset()">Clear</button>
  41. <div>
  42. <span id="start"></span>
  43. <span id="clear"></span>
  44. </div>
  45. <button type="button" onclick="right()">--></button>
  46. <button type="button" onclick="left()">&lt--</button>
  47. <div class="sc">
  48. <span id="R"></span>
  49. <span id="L"></span>
  50. </div>
  51. </body>
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement