Advertisement
Guest User

Untitled

a guest
Aug 24th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width">
  6. <title>My TodoList</title>
  7. <title>Page Title</title>
  8. </head>
  9. <body>
  10. <h1>SouthLand</h1>
  11. <p>Welcome to my todo list</p>
  12. <h6>
  13. <a href="mailto
  14. :csutherland2018@afscholars.org">Email Me</a>
  15. </h6>
  16.  
  17. <hr>
  18. <div>
  19. <button onclick="addTodo()">Add</button>
  20. <input id="addTodoText" type="text" />
  21. </div>
  22.  
  23. <div>
  24.  
  25.  
  26. <html>
  27. <head>
  28. <style>
  29. #myDIV {
  30. width: 300px;
  31. height: 200px;
  32. background: red url('smiley.gif') no-repeat top left/5px 5px;red;
  33. -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
  34. animation: mymove 5s infinite;
  35. }
  36.  
  37. /* Chrome, Safari, Opera */
  38. @-webkit-keyframes mymove {
  39. 50% {background-color: blue;}
  40. }
  41.  
  42. /* Standard syntax */
  43. @keyframes mymove {
  44. 50% {background-color: blue;}
  45. }
  46. </style>
  47. </head>
  48. <body>
  49.  
  50. <p><p>
  51. <div id="myDIV"></div>
  52.  
  53. <p> <em></em> </p>
  54. <p><b></b></p>
  55.  
  56. </body>
  57. </html>
  58.  
  59.  
  60. <button onclick="deleteTodo()">Delete</button>
  61. <input id="deleteTodoNumber" type="number" />
  62. </div>
  63.  
  64. <div>
  65. <button onclick="changeTodo()">Change</button>
  66. <input id="changeTodoNumber" type="number" />
  67. <input id="changeTodoText" type="text" />
  68. </div>
  69.  
  70. <hr>
  71.  
  72. <button onclick="displayTodos()">Show Todos</button>
  73.  
  74. <ul>
  75. </ul>
  76.  
  77. </body>
  78. </html>
  79.  
  80. <!DOCTYPE html>
  81. <html>
  82. <head>
  83. <style>
  84. #myDIV {
  85. width: 300px;
  86. height: 200px;
  87. outline: 1px solid black;
  88. -webkit-animation: mymove 5s infinite; /* Chrome, Safari, Opera */
  89. animation: mymove 5s infinite;
  90. }
  91.  
  92. /* Chrome, Safari, Opera */
  93. @-webkit-keyframes mymove {
  94. 50% {outline: 15px solid lightblue;}
  95. }
  96.  
  97. /* Standard syntax */
  98. @keyframes mymove {
  99. 50% {outline: 15px solid lightblue;}
  100. }
  101. </style>
  102. </head>
  103. <body>
  104.  
  105. <p><p>
  106. <div id="myDIV"></div>
  107.  
  108. <p></p>
  109. <p> <em</em>.</p>
  110. <p><strong></strong></p>
  111.  
  112. </body>
  113. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement