diff options
author | AlmightyMiau <almightymeow612@gmail.com> | 2025-02-04 16:32:18 -0800 |
---|---|---|
committer | AlmightyMiau <almightymeow612@gmail.com> | 2025-02-04 16:32:18 -0800 |
commit | 416aa5373cfcc82c55a1fcdfb9a1141590590cf0 (patch) | |
tree | 9ee2b5c309271647bc26d270abb3631c4f4b9dbe | |
parent | ce8b99551b82ea66fc055ef596c6d40dc125d1de (diff) |
Add Header and Hero divs to Top div
Add Header Logo, links as spans, with appropriate
ids. Add Hero title, subtext, and sign up button.
-rw-r--r-- | index.html | 25 |
1 files changed, 24 insertions, 1 deletions
@@ -8,7 +8,30 @@ </head> <body> <div id="top"> - + <!--Header--> + <div id="header"> + <span id="logo">Header Logo</span> + <span> + <a>header link one</a> + <a>header link two</a> + <a>header link three</a> + </span> + </div> + <!--Hero--> + <div id="hero"> + <div id="text"> + <h1> + This website is awesome + </h1> + <h6> + This website has some subtext that goes here under + the main title. It's a smaller font and the color + is lower contrast. + </h6> + <button>Sign up</button> + </div> + <img> + </div> </div> <div id="info"> |