Hanjo

Lotus

Jul 30th, 2017
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.71 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title id="changepage">
  5. LotusCraft - Home
  6. </title>
  7. <style>
  8. body {
  9. background-color: #f1f1f1;
  10. }
  11. #home, #about, #discord {
  12. border-radius: 5%;
  13. border-width: 1px;
  14. border-left-color: black;
  15. border-right-color: black;
  16. border-bottom-color: black;
  17. border-top-color: black;
  18. background-color: #00dbef;
  19. font-family: Arial;
  20. font-size: 2.4em;
  21. transition-duration: 1s;
  22. display: inline-block;
  23. margin: 8px;
  24. padding: 8px;
  25. letter-spacing: 3px;
  26. text-align: center;
  27. }
  28. #home:hover, #about:hover, #discord:hover {
  29. cursor: pointer;
  30. background-color: #639fff;
  31. box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
  32.  
  33. }
  34. #g {
  35. font-family: Arial;
  36. font-size: 2em;
  37. color: black;
  38. margin-bottom: 6px;
  39. padding: 6px;
  40. text-indent: 30px;
  41. letter-spacing: 3px;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div id="navcontainer">
  47. <center>
  48. <b>
  49. <p id="pnavbutton">
  50.  
  51. <button id="home" onClick="home()">
  52. Home
  53. </button>
  54. <button id="about" onClick="about()">
  55. About Us
  56. </button>
  57. <button id="discord" onClick="discord()">
  58. Discord
  59. </button>
  60. <hr>
  61. </p>
  62. </b>
  63. </center>
  64. </div>
  65. <br>
  66. <div>
  67. <center>
  68. <b>
  69. <p id="g">
  70. es
  71. </p>
  72. <script>
  73. function about() {
  74. var abouttitle = "LotusCraft - About us";
  75. var aboutus = "Welcome to the About us page! Here you can find everything about the server and the owners!"
  76. document.getElementById("changepage").innerHTML = abouttitle;
  77. document.getElementById("g").innerHTML = aboutus;
  78. }
  79. function home() {
  80. var hometitle = "LotusCraft - Home";
  81. document.getElementById("changepage").innerHTML = hometitle;
  82. }
  83. function discord() {
  84. alert("You are being taken to the discord channel!");
  85. window.location="https://discord.gg/TDzcWu5"
  86. }
  87. var g = "Welcome to the official website for the Minecraft server LotusCraft!";
  88. document.getElementById("g").innerHTML = g;
  89.  
  90. </script>
  91. </body>
  92. </html>
Advertisement
Add Comment
Please, Sign In to add comment