direngay

Untitled

Oct 16th, 2025
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>layout seven</title>
  5.         <style>
  6.             :root{
  7.                 /* backgrounds */
  8.                 --bodybg: url("https://file.garden/aKM6cgV5eixaX8Eq/0211.gif");
  9.                 --navbg: url("https://file.garden/aKM6cgV5eixaX8Eq/tcoun2.gif");
  10.                 --listbg: url("https://file.garden/aKM6cgV5eixaX8Eq/tumblr_5e3e3cab218dc9d1c369613712ecd115_4cfd06cd_75.gif");
  11.             }
  12.             @font-face{
  13.                 font-family: one;
  14.                 src: url("https://file.garden/aKM6cgV5eixaX8Eq/rainyhearts.ttf");
  15.             }
  16.             *{
  17.                 /* default styling */
  18.                 margin: 0;
  19.                 padding: 0;
  20.                 box-sizing: border-box;
  21.                 font-family: one;
  22.             }
  23.             body{
  24.                 background: var(--bodybg);
  25.             }
  26.             .container{
  27.                 position: relative;
  28.                 width: 700px;
  29.                 height: 100vh;
  30.                 margin: 0 auto;
  31.                 display: grid;
  32.                 grid-template-areas:
  33.                 "h h h h h h"
  34.                 "n n m m m m"
  35.                 "n n 1 1 2 2"
  36.                 ". . 3 3 3 3"
  37.                 "f f f f f f";
  38.                 grid-template-columns: repeat(6, 1fr);
  39.                 grid-template-rows: repeat(5, 1fr);
  40.                 gap: 10px;
  41.             }
  42.             header, nav, main, section, footer {
  43.                 border: 1px solid;
  44.                 background: white;
  45.                
  46.             }
  47.             header{
  48.                 grid-area: h;
  49.                 grid-column: 1/ 7;
  50.                 position: relative;
  51.                 background: none;
  52.                 border: none;
  53.                 height: 150px;
  54.             }
  55.             @font-face{
  56.                 font-family: two;
  57.                 src: url("https://file.garden/aKM6cgV5eixaX8Eq/KINKIE__.TTF");
  58.             }
  59.             header h1{
  60.                 position: absolute;
  61.                 top: 50%;
  62.                 left: 50%;
  63.                 transform: translate(-50%, -50%);
  64.                 font-family: two;
  65.                 font-size: 4em;
  66.                 background: linear-gradient(white 30%, pink);
  67.                 background-clip: text;
  68.                 -webkit-text-fill-color:transparent;
  69.                 -webkit-text-stroke:0.7px hotpink;
  70.             }
  71.             nav{
  72.                 grid-area: n;
  73.                 border-radius: 20px 20px 0 0;
  74.                 background: url("https://file.garden/aKM6cgV5eixaX8Eq/tcoun2.gif");
  75.                 border: 10px pink solid;
  76.                 outline: 3px white ridge;
  77.                 box-shadow: inset 0 0 0 7px #ffffa8;
  78.             }
  79.             nav h2{
  80.                 text-align: center;
  81.                 color: hotpink;
  82.             }
  83.             menu{
  84.                 list-style-position: inside;
  85.                 margin: 0 5px;
  86.                 list-style-image: var(--listbg);
  87.             }
  88.             menu li{
  89.                 background: pink;
  90.                 margin-bottom: 10px;
  91.                 padding: 5px;
  92.                 text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  93.                 border-radius: 20px 40px 0 20px;
  94.                 transition: all 0.3s;
  95.             }
  96.             menu li:hover{
  97.                 transform: scale(0.9);
  98.                 cursor: pointer;
  99.                 background: #f393c3;
  100.                 transition: all 0.3s;
  101.             }
  102.             main{
  103.                 grid-area: m;
  104.                 border:10px solid pink;
  105.                 box-shadow: inset 0 0 0 7px #ffffa8;
  106.                 outline: 3px white ridge;
  107.                 border-radius: 20px 20px 0 0;
  108.                 background: #f5f5d0;
  109.                 color: hotpink;
  110.                 text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  111.             }
  112.             main p{
  113.                 margin: 10px;
  114.                 text-indent: 40px;
  115.             }
  116.             .one {
  117.                 grid-area: 1;
  118.                 grid-row: 3/4;
  119.                 grid-column: 3/5;
  120.             }
  121.             .two{
  122.                 grid-area: 2;
  123.                 grid-row: 3/4;
  124.                 grid-column:5/7 ;
  125.             }
  126.             .one, .two{
  127.                 border-radius: 20px;
  128.                 border:10px solid pink;
  129.                 box-shadow: inset 0 0 0 7px #ffffa8;
  130.                 outline: 3px #ffffa8 groove;
  131.                 background: #f5f5d0;
  132.                 color: hotpink;
  133.                 text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  134.                 padding: 5px;
  135.                 text-align: center;
  136.             }
  137.             .three{
  138.                 grid-area: 3;
  139.                 grid-row: 4 /5;
  140.                 grid-column: 3/ 7;
  141.                 height: max-content;
  142.                 text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  143.                 background: none;
  144.                 border: none;
  145.             }
  146.             footer{
  147.                 grid-area: f;
  148.                 grid-row: 5/5;
  149.                 position: absolute;
  150.                 bottom: -80px;
  151.                 height: 100px;
  152.                 width: 100%;
  153.                 display: flex;
  154.                 justify-content: center;
  155.                 align-items: center;
  156.                 background: none;
  157.                 border: none;
  158.                 backdrop-filter: blur(4px);
  159.                 text-shadow: 1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white;
  160.                 border-top: 2px hotpink dashed;
  161.             }
  162.         </style>
  163.     </head>
  164.     <body>
  165.         <div class="container">
  166.             <header>
  167.                 <h1>Site title</h1>
  168.             </header>
  169.             <nav>
  170.                 <h2>navigation</h2>
  171.                 <menu>
  172.                     <li>link</li>
  173.                     <li>link</li>
  174.                     <li>link</li>
  175.                     <li>link</li>
  176.                 </menu>
  177.                 <p style="text-align:center; margin-top:30px;">put something here</p>
  178.             </nav>
  179.             <main>
  180.                 <p>
  181.                     Pie toffee marzipan cotton candy apple pie cake shortbread chupa chups. Tart pastry pie pastry donut fruitcake croissant. Halvah lollipop liquorice jelly-o tiramisu muffin. Biscuit candy danish bonbon cupcake caramels. Chocolate bar caramels cheesecake chupa chups marzipan. Cake gummi bears jelly-o shortbread gingerbread jelly beans. Cake sesame snaps gummi bears lollipop gummi bears icing biscuit. Powder cake pastry jelly bear claw danish. Chupa chups chocolate cake pastry jelly-o halvah cake danish bear claw caramels. Jelly beans apple pie jelly cake sweet roll icing.
  182.                 </p>
  183.             </main>
  184.             <section class="one">
  185.                 DragĂ©e liquorice sesame snaps muffin pastry biscuit gummi bears. Chocolate cake ice cream gummies toffee sugar plum cake. Wafer croissant topping chocolate sesame snaps biscuit. Lemon drops candy gummies soufflĂ© liquorice.
  186.             </section>
  187.             <section class="two">
  188.                 Pudding liquorice powder bonbon tart jelly beans gingerbread. Muffin caramels bear claw bonbon caramels pudding muffin brownie icing. Lemon drops pie lemon drops biscuit topping.
  189.             </section>
  190.             <section class="three">
  191.                 <marquee behavior="alternate">write something here</marquee>
  192.             </section>
  193.             <footer>
  194.                 <p>ur site here || 2025-forever and more</p>
  195.             </footer>
  196.         </div>
  197.     </body>
  198. </html>
Tags: html CSS
Advertisement
Add Comment
Please, Sign In to add comment