HTMLify
header.html
Views: 35 | Author: cody
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title> HEADER | E-COMMERCE WEBSITE </title> <!-- favicon --> <link rel="icon" href="https://yt3.ggpht.com/a/AGF-l78km1YyNXmF0r3-0CycCA0HLA_i6zYn_8NZEg=s900-c-k-c0xffffffff-no-rj-mo" type="image/gif" sizes="16x16"> <!-- EXTERNAL LINKS --> <link rel="stylesheet" href="css/header.css"> <script src="https://kit.fontawesome.com/4a3b1f73a2.js"></script> <link href="https://fonts.googleapis.com/css?family=Lato&display=swap" rel="stylesheet"> </head> <body> <header> <section> <!-- MAIN CONTAINER --> <div id="container"> <!-- SHOP NAME --> <div id="shopName"><a href="index.html"> <b>SHOP</b>LANE </a></div> <!-- COLLCETIONS ON WEBSITE --> <div id="collection"> <div id="clothing"><a href="clothing.html"> CLOTHING </a></div> <div id="accessories"><a href="accessories.html"> ACCESSORIES </a></div> </div> <!-- SEARCH SECTION --> <div id="search"> <i class="fas fa-search search"></i> <input type="text" id="input" name="searchBox" placeholder="Search for Clothing and Accessories"> </div> <!-- USER SECTION (CART AND USER ICON) --> <div id="user"> <a href="cart.html"> <i class="fas fa-shopping-cart addedToCart"><div id="badge"> 0 </div></i></a> <a href="#"> <i class="fas fa-user-circle userIcon"></i> </a> </div> </div> </section> </header> </body> </html> |