index.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE html>
  2. <html>
  3. <!-- Like this? https://github.com/thecoinflipper/thecoinflipper.github.io -->
  4. <head>
  5. <meta name=viewport content="width=500"/>
  6. <title>The Coin Flipper</title>
  7. <style type="text/css">
  8. html, body {height: 90%;}
  9. body {text-align: center;}
  10. #content {
  11. display: inline-block;
  12. margin-top: 200px;
  13. font-weight: bold;
  14. font-size: 120pt;
  15. font-family: Arial, sans-serif;
  16. text-decoration: none;
  17. color: black;
  18. }
  19. .raw {
  20. font-size: 90%;
  21. color: Gray;
  22. }
  23. .raw a {
  24. text-decoration: none;
  25. color: inherit;
  26. }
  27. .raw a:hover {
  28. text-decoration: underline;
  29. }
  30. .link {
  31. font-size: 90%;
  32. color: black;
  33. }
  34. .txtButton {
  35. background:none;
  36. border:none;
  37. margin:0;
  38. font-size: 16pt;
  39. color: black;
  40. text-decoration: underline;
  41. cursor: pointer;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div id="content">
  47. <script src="flip.js" type='text/javascript'></script>
  48. </div>
  49. <br>
  50. <button id='flipper' class="txtButton" title="Click here!">Again!</button>
  51. <script src="flip.js" type='text/javascript'>
  52. </script>
  53. <p class="raw">
  54. <a href="raw.html" target="_blank">[simple version]</a>
  55. </p>
  56. </body>
  57. </html>