Advertisement
Guest User

Untitled

a guest
Feb 3rd, 2024
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html>
  4. <head>
  5. <title>
  6. Home sweet home
  7. </title>
  8. <style>
  9. html {
  10. align-items: center;
  11. display: flex;
  12. height: 100%;
  13. justify-content: center;
  14. margin: 0;
  15. background-color: #4C566A;
  16. }
  17.  
  18. h1 {
  19. text-align: center;
  20. font-size: 2em;
  21. text-decoration: underline;
  22. grid-column: 1 / -1;
  23. }
  24.  
  25. a {
  26. color: inherit;
  27. text-decoration: none;
  28. }
  29.  
  30. body {
  31. margin: 1em;
  32. padding: 1em;
  33. display: flex;
  34. font-size: 22px;
  35. font-family: Inconsolata, mono;
  36. }
  37.  
  38. ul {
  39. list-style-type: none;
  40. margin: 0;
  41. padding: 0;
  42. white-space: nowrap;
  43. }
  44.  
  45. li:first-child {
  46. font-weight: bold;
  47. line-height: 2em;
  48. }
  49.  
  50. nav {
  51. display: grid;
  52. grid-row-gap: 1em;
  53. grid-template-columns: 1fr 1fr;
  54. margin: 0 1em;
  55. min-width: 24em;
  56. padding: 1em 0;
  57. }
  58.  
  59. </style>
  60. </head>
  61.  
  62. <body>
  63. <font color="white">
  64.  
  65. <nav>
  66. <h1>Welcome home :^)</h1>
  67. <ul>
  68. <li>General</li>
  69. <li><a href="https://www.youtube.com">Youtube</a></li>
  70. <li><a href="https://www.wiby.me">Wiby</a></li>
  71. <li><a href="https://www.discord.com/app">Discord</a></li>
  72. <li><a href="https://wiki.archlinux.org">Arch Wiki</a></li>
  73. <li><a href="https://aur.archlinux.org">AUR</a></li>
  74. <ul>
  75. <li>French</li>
  76. <li><a href="https://www.wordreference.com">word reference</a></li>
  77. <li><a href="https://www.wordreference.com">bon patron</a></li>
  78. </ul>
  79. </ul>
  80. <ul>
  81. <li>Boards</li>
  82. <li><a href="https://www.4chan.org">Front Page</a></li>
  83. <li><a href="https://www.4chan.org/ic/">/ic/</a></li>
  84. <li><a href="https://www.4chan.org/wg/">/wg/</a></li>
  85. <li><a href="https://www.4chan.org/int/fr">/fr/</a></li>
  86. <li><a href="https://www.4chan.org/sci/">/sci/</a></li>
  87. <ul>
  88. <li>DIY Web</li>
  89. <li><a href="https://www.landchad.net">Landchad</a></li>
  90. <li><a href="https://www.stpg-tk.netlify.app/">stpg</a></li>
  91. <li><a href="https://www.4chan.org/wg/html">/html/</a></li>
  92. </ul>
  93. </ul>
  94. </nav>
  95. </font color>
  96. <img src="mountainlake.gif">
  97. </body>
  98.  
  99. </html>
  100.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement