Advertisement
irmantas_radavicius

Untitled

Nov 14th, 2021
948
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.67 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3.  
  4.     <head>
  5.    
  6.         <title>Homepage</title>
  7.         <meta charset="utf-8">
  8.         <style>
  9.             *{
  10.                 background-color:aqua;
  11.                 box-sizing: border-box;
  12.             }
  13.             body{
  14.                 padding:10px;
  15.                 margin:0;
  16.             }
  17.             header img{
  18.                 width:200px;
  19.                 background-color:cornsilk;
  20.                 padding:0;
  21.                 margin:-10px 0 0 -10px;
  22.             }
  23.             nav{
  24.                 border: 2px dotted black;
  25.                 padding:30px 0 30px 40px;
  26.                 margin:-100px 0 0 200px;
  27.                 font-size:30px;
  28.             }
  29.             body main{
  30.                 padding:10px 0 0 0;
  31.                 margin:0;
  32.             }
  33.             footer p{
  34.                 padding:0 0 0 100px;
  35.                 margin:0;
  36.                 border: 1px solid black;
  37.             }
  38.             a:link, a:visited{
  39.                 color:darkorchid;
  40.                 text-decoration:none;
  41.             }
  42.             a:hover, a:active{
  43.                 text-decoration:underline;
  44.             }
  45.  
  46.             body main h1{
  47.                 margin:0;
  48.                 padding:10px;
  49.                 border: 3px solid black;
  50.                 background-color:mediumslateblue;
  51.             }
  52.             body main p{
  53.                 margin:0;
  54.                 border: 3px solid purple;
  55.                 background-color:mintcream;
  56.             }
  57.  
  58.         </style>
  59.     </head>
  60.    
  61.     <body>
  62.         <!-- Header -->
  63.         <header>
  64.             <a href="index.htm">
  65.                 <img src="./images/logo.webp" alt="Logo image">
  66.             </a>
  67.         </header>
  68.        
  69.         <!-- Menu -->
  70.         <nav id="menu.top">
  71.             <a href="home.htm"> Home </a>
  72.             <a href="index.htm"> Construction </a>
  73.             <a href="images.htm"> Images </a>
  74.             <a href="lipsum.htm"> Lipsum </a>
  75.             <a href="cheatsheet.htm"> Cheatsheet </a>
  76.         </nav>
  77.        
  78.         <!-- Content -->
  79.         <main>
  80.             <h1>Content</h1>
  81.             <p>
  82.                 Content
  83.             </p>
  84.             <p><a href="#" style="background-color:mintcream;">Back to top</a></p>
  85.         </main>
  86.        
  87.         <!-- Footer -->
  88.         <footer>
  89.             <p>&copy; xxx 2021 All rights reserved</p>
  90.         </footer>
  91.    
  92.     </body>
  93.    
  94. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement