Demonific

Untitled

Feb 25th, 2021 (edited)
522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.37 KB | None | 0 0
  1. HTML:
  2. <!DOCTYPE html>
  3. <html lang="en">
  4.     <head>
  5.         <meta charset="UTF-8">
  6.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7.         <link rel="stylesheet" type="text/css" href="css/style.css">
  8.         <!-- Load icon library -->
  9.         <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  10.         <title>First Website</title>
  11.     </head>
  12. <body>
  13.  
  14.  
  15.     <div class="nav-container">
  16.         <header>
  17.             <a href="index.html" class="logo">ZoCo</a>
  18.  
  19.             <nav>
  20.                 <ul>
  21.                     <li><a href="#">Home</a></li>
  22.                     <li><a href="#">Finder</a></li>
  23.                     <li><a href="#">Store</a></li>
  24.                     <li><a href="#">About Me</a></li>
  25.                 </ul>
  26.             </nav>
  27.         </header>
  28.         <div class="social-header">
  29.             <ul>
  30.                 <li><a href="#"><img src="img/Twitter.png" alt="Twitter"></a></li>
  31.                 <li><a href="#"><img src="/img/Insta.png" alt="Instagram"></a></li>
  32.                 <li><a href="#"><img src="/img/Youtube.png" alt="Youtube"></a></li>
  33.             </ul>
  34.         </div>
  35.     </div>
  36.     <div class="bg">
  37.         <div class="content">
  38.           <h1>Lol</h1>
  39.           <img src="img/yugi.png" alt="Yugi">
  40.         </div>
  41.       </div>
  42.  
  43.  
  44. </body>
  45. </html>
  46.  
  47. CSS:
  48.  
  49. @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap');
  50.  
  51. body {
  52.   height: 100vh;
  53.   margin: 0;
  54.   font-family: 'Poppins', 'arial';
  55. }
  56. ul {
  57.   list-style-type: none;
  58.   margin: 0;
  59.   padding: 0;
  60. }
  61. a {
  62.   text-decoration: none;
  63. }
  64. img {width: 100%;}
  65. .nav-container {
  66.   background: #323299;
  67.  
  68.   a {
  69.     color: white;
  70.   }
  71. }
  72. header {
  73.     display: flex;
  74.     justify-content: space-between;
  75.     padding: 2em;
  76.  
  77.     .logo {
  78.       font-weight: bold;
  79.     }
  80.  
  81.     nav {
  82.       float: right;
  83.  
  84.       ul{
  85.         display: flex;
  86.  
  87.         a {
  88.           display: block;
  89.           padding: 0 2em;
  90.         }
  91.       }
  92.     }
  93. }
  94. .social-header, .bg-design {
  95.   display: none;
  96. }
  97. .bg {
  98.   background: #9359C7;
  99.   color: white;
  100.   display: grid;
  101.   text-align: center;
  102.   height: 764px;
  103.   width: 1280px;
  104. }
  105.  
  106. .content {
  107.   position: relative;
  108. }
  109.  
  110. .content img {
  111.   width: auto;
  112.   height: auto;
  113.   position: absolute;
  114.   right: -178px;
  115.   bottom: 0;
  116. }
Add Comment
Please, Sign In to add comment