Advertisement
lemansky

Untitled

Nov 23rd, 2020
1,100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.59 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8">
  5.     <title>Document</title>
  6.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7.     <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
  8.     <style>
  9.         * {
  10.             box-sizing: border-box;
  11.         }
  12.     html, body {
  13.         align-items: center;
  14.         background: gold;
  15.         display: flex;
  16.         justify-content: center;
  17.         margin: 0;
  18.         min-height: 100%;
  19.         padding: 0;
  20.         width: 100%;
  21.     }
  22.  
  23.     p:nth-of-type(1){
  24.         height:100px;
  25.         width:100px;
  26.         background:url("https://deepcloud.eu/Untitled.png");
  27.         background-position: 0 0;
  28.     }
  29.     p:nth-of-type(2){
  30.         height:100px;
  31.         width:100px;
  32.         background:url("https://deepcloud.eu/Untitled.png");
  33.         background-position:-100px 0;
  34.     }
  35.     p:nth-of-type(3){
  36.         height:100px;
  37.         width:100px;
  38.         background:url("https://deepcloud.eu/Untitled.png");
  39.         background-position: 0 -100px;
  40.     }
  41.     p:nth-of-type(4){
  42.         height:100px;
  43.         width:100px;
  44.         background:url("https://deepcloud.eu/Untitled.png");
  45.         background-position: -100px -100px;
  46.     }
  47.     p:nth-of-type(5){
  48.         height:120px;
  49.         width:130px;
  50.         background:url("https://deepcloud.eu/Untitled.png");
  51.         background-position: -200px 0px;
  52.     }
  53.     p:nth-of-type(6){
  54.         height:150px;
  55.         width:150px;
  56.         background:url("https://deepcloud.eu/Untitled.png");
  57.         background-position: -330px -120px;
  58.     }
  59.   </style>
  60. </head>
  61. <body>
  62.     <p></p>
  63.     <p></p>
  64.     <p></p>
  65.     <p></p>
  66.     <p></p>
  67.     <p></p>
  68. </body>
  69. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement