Advertisement
Guest User

html

a guest
Feb 5th, 2023
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.83 KB | Source Code | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="UTF-8" />
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.     <title>Web Sass</title>
  8.     <link rel="stylesheet" href="css-output.css" />
  9.   </head>
  10.   <body>
  11.     <section class="navbar">
  12.       <a href="#"
  13.        ><img src="img/logo.jpg" alt=""
  14.      /></a>
  15.       <div class="right">
  16.         <a href="#about">About</a>
  17.         <a href="#product">Product</a>
  18.         <a href="#contact">Contact</a>
  19.       </div>
  20.     </section>
  21.     <section class="header">Header</section>
  22.     <section class="about">About</section>
  23.     <section class="product">Product</section>
  24.     <section class="contact">Contact</section>
  25.     <section class="footer">Footer</section>
  26.   </body>
  27. </html>
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement