Advertisement
Guest User

MED'S AWESOME PAGE CODE 1

a guest
Jul 14th, 2023
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.10 KB | Source Code | 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.     <link rel="shortcut icon" href="{PUT FAVICON HERE}">
  7.     <title>MED'S AWESOME PAGE CODE 1</title>
  8. <!-- Hiya! This quick page theme was by me, Med! You can find me at tsuinosora.neocities.com. This is just a quick layout I made for personal use, credit is appreciated but not needed since this was mostly made in one day. Some general information:
  9.  * The font used for the body is Fira Sans and the font used for links and the title is Pangolin, you may want to change it! I used Google Fonts for them lol
  10.  * Feel free to edit to hell and back!
  11.  * There are no scrollbars set up for text in the boxes! "Why not?" you may ask. Well, I'm on firefox and they look kinda ugly on here lol. so this is best for a quick layout that doesn't require a whole lot of text but that does have a fair amount of links
  12.  * I have a 1280x1024 monitor! It may look different on yours :3 -->
  13.  
  14. <link rel="preconnect" href="https://fonts.googleapis.com">
  15. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  16. <link href="https://fonts.googleapis.com/css2?family=Fira+Sans&family=Pangolin&display=swap" rel="stylesheet">
  17.  
  18. <style>
  19.  
  20. body{
  21.   background-color:#FFDAEA;
  22.   background-image:url({BACKGROUND IMAGE URL GOES HERE});
  23.   font-family: 'Fira Sans', sans-serif;
  24. }
  25.  
  26. #containment{
  27.   margin:auto;
  28.   width:850px;
  29.   height:660px;
  30.   position:relative;
  31.   top:0px;
  32.   }
  33.  
  34. #textbox1{
  35.   margin:auto;
  36.   padding:3px;
  37.   font-size:16px;
  38.   width:394px;
  39.   height:194px;
  40.   background-color:#fff;
  41.   color:#000;
  42.   border:2px solid #FFBBD6;
  43.   position:absolute;
  44.   left:10px;
  45.   top:60px;
  46. }
  47.  
  48. #imgbox1{
  49.   margin:auto;
  50.   padding:0px;
  51.   font-size:16px;
  52.   width:400px;
  53.   height:200px;
  54.   background-image:url({IMAGE FOR IMAGE BOX 1, BEST IF 400 x 200px});
  55.   color:#000;
  56.   border:2px solid #FFBBD6;
  57.   position:absolute;
  58.   right:10px;
  59.   top:60px;
  60. }
  61.  
  62. #textbox2{
  63.   margin:auto;
  64.   padding:3px;
  65.   font-size:16px;
  66.   width:394px;
  67.   height:194px;
  68.   background-color:#fff;
  69.   color:#000;
  70.   border:2px solid #FFBBD6;
  71.   position:absolute;
  72.   right: 10px;
  73.   bottom: 160px;
  74. }
  75.  
  76. #imgbox2{
  77.   margin:auto;
  78.   padding:0px;
  79.   font-size:16px;
  80.   width:400px;
  81.   height:200px;
  82.   background-image:url({IMAGE FOR IMAGE BOX 2, BEST IF 400 x 200px});
  83.   color:#000;
  84.   border:2px solid #FFBBD6;
  85.   position:absolute;
  86.   left:10px;
  87.   bottom:160px;
  88. }
  89.  
  90. #links{
  91.   padding:3px;
  92.   margin:auto;
  93.   font-size:18px;
  94.   width:844px;
  95.   height:24px;
  96.   background-color:#fff;
  97.   color:#000;
  98.   border:2px solid #FFBBD6;
  99.   position:absolute;
  100.   bottom:100px;}
  101.  
  102. h1{
  103.   text-align:right;
  104.   text-shadow: 2px 2px 2px #D0010161;
  105.   font-size:50px;
  106.   font-family: 'Pangolin', cursive;
  107.   color:#FE3C7B;
  108. }
  109.  
  110. a{
  111.   font-family: 'Pangolin', cursive;
  112.   color:#E5819B;
  113. }
  114.  
  115. a:hover{
  116.   color:#FE3C7B;
  117. }
  118.  
  119. </style>
  120.  
  121. </head>
  122.  
  123.   <body>
  124.   <div id="containment"><h1>TESTING . . .</h1>
  125.   <div id="textbox1"><p>This is a test box to show how much text I can fit on this text box! Wowie! SO many words! I love typing and the feeling of keyboard keys clicking under my fingers as I type a lot of text.</p><p>Everyone loves how good at typing I am, and I am a very special internet user! Yippie!!</p><p>Words! Girls love them!!!</p></div>
  126.   <div id="imgbox1"></div>
  127.   <div id="imgbox2"></div>
  128.   <div id="textbox2"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p></div>
  129.   <div id="links"><center><a href="#">test text</a> // <a href="#">test text</a> // <a href="#">test text</a> // <a href="#">test text</a> // <a href="#">test text</a> // <a href="#">test text</a> // <a href="#">test text</a></center></div></div>
  130.   </body>
  131. </html>
  132.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement