test.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>Test Page</title>
  6. <style>
  7. .red {
  8. color:red;
  9. }
  10. </style>
  11. <script type="text/javascript">
  12. window.onload = function() {
  13. alert("BEEE DOOO");
  14. prompt("Are you a fugitive from Justice?","Yes");
  15. };
  16. </script>
  17. <meta http-equiv="set-cookie" content="GorgonGlaze=Petrified%20Grits; expires=Sat, 25-Nov-2120 12:00:00 GMT; path=/;" />
  18. </head>
  19. <body>
  20. <h1>
  21. Howdy Howdy Howdy
  22. </h1>
  23. <p>Unicode Works 🥰</p>
  24. <form id="howIsBabbyFormed" action="other.html">
  25. <label for="text" class="red">Text</label>
  26. <input name="text" title="default" type="text" value="default"></input>
  27. <input id="radio1" name="radio2" type="radio"></input>
  28. <input id="radio2" name="radio2" type="radio" checked></input>
  29. <input id="hammertime" type="submit" disabled></input>
  30. <input id="hidon" type="hidden"></input>
  31. </form>
  32. <br />
  33. <button id="no-see-em" style="display:none;">Tickle</button>
  34. <button id="clickme" onclick="alert('PARTY');">PARTY HARD</button>
  35. <br />
  36. <a href="other.html" target="_blank" id="linky" class="red">Test Link</a>
  37. <br />
  38. <iframe id="frame" src="other.html" />
  39. </body>
  40. </html>