mididump

windows retro neocities page layout

Apr 3rd, 2025
76
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.90 KB | None | 1 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <meta charset="UTF-8">
  5.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.   <link rel="icon" type="image/x-icon" href="recs/favicon.ico">
  7.   <title>recs</title>
  8.   <style>
  9.     body {
  10.       margin: 0;
  11.       padding: 20px;
  12.       font-family: "MS Gothic", sans-serif;
  13.       font-size: 20px;
  14.       font-weight: bold;
  15.       color: black;
  16.       background-color: #c0c0c0; /* Classic Windows 95 gray */
  17.     }
  18.  
  19.     .container {
  20.       width: 65%;
  21.       margin: auto;
  22.       background-color: #ffffff; /* White background for the content box */
  23.       border: 2px solid #000080; /* Dark blue border to match Windows 95 vibe */
  24.       padding: 20px;
  25.       box-shadow: 5px 5px 0px #808080; /* Simple 3D effect for retro look */
  26.       overflow-y: auto;
  27.       height: 70vh; /* Makes it scrollable */
  28.     }
  29.  
  30.     .title {
  31.       text-align: center;
  32.       background-color: #000080; /* Dark blue title bar */
  33.       color: white;
  34.       padding: 10px;
  35.       margin: -20px -20px 20px -20px;
  36.       box-shadow: 0 2px #808080 inset;
  37.     }
  38.  
  39.     .recommendations {
  40.       list-style-type: none; /* Removes bullets */
  41.       padding: 0;
  42.     }
  43.  
  44.     .recommendations li {
  45.       margin: 15px 0;
  46.     }
  47.  
  48.     .link {
  49.       text-decoration: none;
  50.       color: #000080; /* Dark blue links */
  51.     }
  52.  
  53.     .link:hover {
  54.       text-decoration: underline;
  55.     }
  56.   </style>
  57. </head>
  58. <body>
  59.   <div class="container">
  60.     <div class="title">recommendations</div>
  61.     <p>Here are some fun and interesting recs just for you!
  62.     <ul class="recommendations">
  63.       <li><a href="/linkhere" class="link">📓 fave fics</a></li>
  64.        <li><a href="/linkhere">🎵 playlists</a></li>
  65.        <li><a href="https://youtube.com/playlist?list=PL4ed5BUFc6UpHDT486Y1zjGLad6R5_0QV&si=vd87DfLXVV6ttCxh">🐇 FAVES FAVE with Soobin!!!</a></li>
  66.     </ul>
  67.   </div>
  68. </body>
  69. </html>
  70.  
Advertisement
Add Comment
Please, Sign In to add comment