Advertisement
pacho_the_python

HTML project final

Nov 6th, 2022
906
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.78 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {% load static %}
  4. <head>
  5.   <title>Build Center</title>
  6.   <meta charset="utf-8">
  7.   <meta name="viewport" content="width=device-width, initial-scale=1">
  8.  
  9.   <link rel="wesite icon" type="jpg" href="{% static 'images/logo.jpg'%}">
  10.   <link rel="stylesheet" href="{% static 'css/style.css' %}">
  11.   <link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.2.0/css/all.css">
  12. </head>
  13. <body>
  14. <header>
  15.     <nav>
  16.         <ul class="menu">
  17.             <li class="active"><a href="#">Build Center</a></li>
  18.             <li><a href="#">About</a></li>
  19.             <li><a href="#">Projects</a></li>
  20.             <li><a href="#">Contact</a></li>
  21.             <li><a href="#">Login</a></li>
  22.         </ul>
  23.     </nav>
  24. </header>
  25.  
  26.  
  27. </body>
  28. </html>
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement