Advertisement
zeorphix

page

Sep 22nd, 2021 (edited)
1,817
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.77 KB | None | 0 0
  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>title of your tab</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.    
  12.     <style>
  13.     /* this is where u can put css */
  14.    
  15.     body {
  16.       background-color:#000;
  17.     }
  18.    
  19.     /* changes links */
  20.     a:link {
  21.       text-decoration: none;
  22.       color: #fff;
  23.       -webkit-transition: 0.2s ease-in-out;
  24.       -moz-transition: 0.2s ease-in-out;
  25.       -o-transition: 0.2s ease-in-out;
  26.       transition: 0.2s ease-in-out;
  27.     }
  28.  
  29.     a:visited {
  30.       color:#0015ff;
  31.     }
  32.  
  33.     a:hover {
  34.       color: #f50000;
  35.       -webkit-transition: 0.2s ease-in-out;
  36.       -moz-transition: 0.2s ease-in-out;
  37.       -o-transition: 0.2s ease-in-out;
  38.       transition: 0.2s ease-in-out;
  39.     }
  40.  
  41.     a:active {
  42.       color:#f50000;
  43.     }
  44.    
  45.     /* changes selection with cursor */
  46.     ::selection {
  47.       background-color:rgb(171, 171, 171);
  48.     }
  49.  
  50.     /* changes scrollbar */
  51.     ::-webkit-scrollbar {
  52.       width: 8px;
  53.       height: 8px;
  54.     }
  55.     ::-webkit-scrollbar-thumb {
  56.       background-color: #ffffff;
  57.       border: 1px solid #ffffff;
  58.     }
  59.     ::-webkit-scrollbar-track {
  60.       background-color: #000000;
  61.     }
  62.  
  63.     /* i think u can figure this out urself */
  64.     .header, .container {
  65.       background-color:#000;
  66.       color:#fff;
  67.       margin:5px;
  68.       padding:5px;
  69.       border:5px double white;
  70.     }
  71.    
  72.     .header {
  73.       max-width:700px;      
  74.     }
  75.    
  76.     .container {
  77.       max-width:400px;
  78.       max-height:200px;
  79.       overflow:auto;
  80.     }
  81.     </style>
  82.   </head>
  83.  
  84.   <body>
  85.   <center>
  86.   <!--
  87.  header
  88.  -->
  89.   <div class="header">
  90.     <p><img src="https://cdn.discordapp.com/attachments/396912105497821195/870410692090535956/Bambolina.png"></p>
  91.     <p>Put a header picture here or something</p>
  92.   </div>
  93.   <!--
  94.  your "diary entries"
  95.  -->
  96.   <div class="container">
  97.     <p>Hi im ro</p>
  98.     <p>New paragraph</p>
  99.     <p>Idk put an icon here somewhere</p>
  100.     <p><a href="">Here is a link that leads to nowhere</a></p>
  101.   </div>
  102.  
  103.   <div class="container">
  104.     <p>Hi im ro</p>
  105.     <p>New paragraph</p>
  106.     <p>Idk put an icon here somewhere</p>
  107.     <p><a href="">Here is a link that leads to nowhere</a></p>
  108.     <p>im tired</p>
  109.     <p>im tired</p>
  110.     <p>im tired</p>
  111.     <p>im tired</p>
  112.     <p>im tired</p>
  113.     <p>im tired</p>
  114.     <p>im tired</p>
  115.   </div>
  116.  
  117.   </center>
  118.   </body>
  119. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement