Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2023
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>College Football Archive</title>
  7.     <meta name="viewport" content="width=device-width, initial-scale=1">
  8.     <link rel="stylesheet" href="homepage.css">
  9. </head>
  10. <header>
  11.     <div class="topnav" id="myTopnav">
  12.         <img src="fb-helmet.png" alt="Logo" class = "helmet-logo">
  13.         <div id ="teams-btn">
  14.  
  15.            <button class = "nav-btn" ><a href="#Teams">Teams</a></button>
  16.  
  17.         </div>
  18.         <div class="dropdown">
  19.             <button class="dropbtn">Seasons
  20.                 <i class="fa fa-caret-down"></i>
  21.             </button>
  22.             <div class="dropdown-content">
  23.                 <a href="www.collegefbarchive.com/seasons/2022">2022</a>
  24.                 <a href="www.collegefbarchive.com/seasons/2021">2021</a>
  25.                 <a href="www.collegefbarchive.com/seasons/2020">2020</a>
  26.             </div>
  27.         </div>
  28.  
  29.         <div id ="login-btn">
  30.             <button class = "nav-btn" ><a href="#Login">Log In</a></button>
  31.         </div>
  32.  
  33.         <div id ="signUp-btn">
  34.         <button class = "nav-btn" ><a href ="#signup">Sign Up</a></button>
  35.         </div>
  36.     </div>
  37. </header>
  38. <body>
  39.  
  40. <div class = "main">
  41.     <span class ="title-span">
  42.     <h1 class = "titles" id = "main-title">College Football Archive</h1>
  43.     <h2 class = "titles" id = "sub-title"> The place for College Football Scores</h2>
  44.     </span>
  45. </div>
  46.  
  47. <script src="" async defer></script>
  48. </body>
  49. <footer>
  50.     <div class="footer-logo">
  51.         <img src="fb-helmet.png" alt="Logo" class="helmet-logo">
  52.     </div>
  53.     <div class="footer-links">
  54.         <a href="#contact">Contact Us</a>
  55.         <a href="Terms%20of%20Use.html">Terms of Use</a>
  56.     </div>
  57. </footer>
  58.  
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement