-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="homepage.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar">
<img class="logo" src="C:\Users\Vianca\Documents\2nd Year\2608 (App Dev)\WebGroup\Pictures\logo.png">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Apparel</a>
<div class = "sub-menu">
<ul>
<li><a href="men's apparel.html">Men's Apparel</a></li>
<li><a href="women's apparel.html">Women's Apparel</a></li>
<li><a href="kid's apparel.html">Kid's Apparel</a></li>
</ul>
</div>
</li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li class = "btn">
<input class="search-txt" type="text" name="" placeholder="Type to search . . ."><a href = "#">
<i class="fa fa-search" aria-hidden="true"></i></a>
</li>
<li><a href = "cart.html"><i class="fa fa-shopping-cart" aria-hidden="true"></i></a></li>
</ul>
</nav>
<div class="center">
<h1>Give yourself a new style!</h1>
<div class="buttons">
<a href = "apparelhome.html"><button>Shop Now</button></a>
<a href = "contact.html"><button class="btn2">Contact Us</button></a>
</div>
</div>
</div>
</body>
</html>