index.html 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>sickgirl</title>
  7. <!-- The style.css file allows you to change the look of your web pages.
  8. If you include the next line in all your web pages, they will all share the same look.
  9. This makes it easier to make new pages for your site. -->
  10. <link href="style.css" rel="stylesheet" type="text/css" media="all">
  11. </head>
  12. <body>
  13. <h1 style= 'color:pink'><center>sicK girL</center></h1>
  14. <datalist>nbk</datalist>
  15. <p><center>The purpose of this blog is for me to document my life, to have something to be remembered by, maybe after death you can figure out what went wrong with me, because i never did. <a href="http://www.acolumbinesite.com/" style="color:#ffc">i'll always be sick.</a></center>
  16. <html>
  17. <marquee>i don't want what you have, i want to be <em>you</em>.</marquee>
  18. <h2 style='color: pink'><center>my innermost thoughts</center></h2> <a href="journalreal.html"> <center><img src="trauma.png"></a></center> <marquee>FALSE REALITY FALSE REALITY FALSE REALITY</marquee><h2 style='color: pink'><center>my music</center></h2> <a href="music.html"> <center><img src="suicide.png" width="250" height="220" alt="Computer Hope"></a></center> <marquee style="color:#ffc">curdled milk and baby teeth</marquee>
  19. <h2 style='color: pink'><center>b a n g</center></h2> <a href="peace.html"> <center><img src="bang.png" width="230" height="220" alt="image"></a></center>
  20. <marquee style="color:#ffc">SICK SICK SICK SICK SICK</marquee>
  21. <html>
  22. <head>
  23. <meta name="viewport" content="width=device-width, initial-scale=1">
  24. <style>
  25. #snackbar {
  26. visibility: hidden;
  27. min-width: 250px;
  28. margin-left: -125px;
  29. background-color: #333;
  30. color: #fff;
  31. text-align: center;
  32. border-radius: 2px;
  33. padding: 16px;
  34. position: fixed;
  35. z-index: 1;
  36. left: 50%;
  37. bottom: 30px;
  38. font-size: 17px;
  39. }
  40. #snackbar.show {
  41. visibility: visible;
  42. -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  43. animation: fadein 0.5s, fadeout 0.5s 2.5s;
  44. }
  45. @-webkit-keyframes fadein {
  46. from {bottom: 0; opacity: 0;}
  47. to {bottom: 30px; opacity: 1;}
  48. }
  49. @keyframes fadein {
  50. from {bottom: 0; opacity: 0;}
  51. to {bottom: 30px; opacity: 1;}
  52. }
  53. @-webkit-keyframes fadeout {
  54. from {bottom: 30px; opacity: 1;}
  55. to {bottom: 0; opacity: 0;}
  56. }
  57. @keyframes fadeout {
  58. from {bottom: 30px; opacity: 1;}
  59. to {bottom: 0; opacity: 0;}
  60. }
  61. </style>
  62. </head>
  63. <body>
  64. <h2>Snackbar / Toast</h2>
  65. <p>Snackbars are often used as a tooltips/popups to show a message at the bottom of the screen.</p>
  66. <p>Click on the button to show the snackbar. It will disappear after 3 seconds.</p>
  67. <button onclick="myFunction()">Show Snackbar</button>
  68. <div id="snackbar">4/20/24...</div>
  69. <script>
  70. function myFunction() {
  71. var x = document.getElementById("snackbar");
  72. x.className = "show";
  73. setTimeout(function(){ x.className = x.className.replace("show", ""); }, 3000);
  74. }
  75. </script>
  76. </body>
  77. <head>
  78. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  79. <meta name="viewport" content="width=device-width, initial-scale=1">
  80. <style>
  81. .buttonload {
  82. background-color: #4CAF50; /* Green background */
  83. border: none; /* Remove borders */
  84. color: white; /* White text */
  85. padding: 12px 24px; /* Some padding */
  86. font-size: 16px; /* Set a font-size */
  87. }
  88. /* Add a right margin to each icon */
  89. .fa {
  90. margin-left: -12px;
  91. margin-right: 8px;
  92. }
  93. </style>
  94. </head>
  95. <body>
  96. <h2>Loading Buttons</h2>
  97. <button class="buttonload">
  98. <i class="fa fa-spinner fa-spin"></i>Loading
  99. </button>
  100. <button class="buttonload">
  101. <i class="fa fa-circle-o-notch fa-spin"></i>Loading
  102. </button>
  103. <button class="buttonload">
  104. <i class="fa fa-refresh fa-spin"></i>Loading
  105. </button>
  106. </body>
  107. <body>
  108. <h1>Typewriter</h1>
  109. <button onclick="typeWriter()">Click me</button>
  110. <p id="demo"></p>
  111. <script>
  112. var i = 0;
  113. var txt = '4/20/24';
  114. var speed = 50;
  115. function typeWriter() {
  116. if (i < txt.length) {
  117. document.getElementById("demo").innerHTML += txt.charAt(i);
  118. i++;
  119. setTimeout(typeWriter, speed);
  120. }
  121. }
  122. </script>
  123. <style>
  124. #div1 {
  125. font-size:48px;
  126. }
  127. </style>
  128. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  129. <body>
  130. <div id="div1" class="fa"></div>
  131. <script>
  132. function smile() {
  133. var a;
  134. a = document.getElementById("div1");
  135. a.innerHTML = "&#xf118;";
  136. setTimeout(function () {
  137. a.innerHTML = "&#xf11a;";
  138. }, 1000);
  139. setTimeout(function () {
  140. a.innerHTML = "&#xf119;";
  141. }, 2000);
  142. setTimeout(function () {
  143. a.innerHTML = "&#xf11a;";
  144. }, 3000);
  145. }
  146. smile();
  147. setInterval(smile, 4000);
  148. </script>
  149. </body>
  150. </html>