-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (37 loc) · 1.18 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
43
44
45
46
47
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Musa's Shop.</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<nav>
<div class="brand">
<a href="./index.html">Musa's Shop.</a>
</div>
<div class="nav-items">
<a href="./index.html">Home</a>
<a href="./login/index.html">Login</a>
<a href="./signup/index.html">Signup</a>
<a href="./shop/index.html">Shop</a>
<a href="./cart/index.html">My Cart</a>
<a href="./profile/index.html">Profile</a>
</div>
</nav>
<div class="container">
<div>
<h1 style="font-size: 60px; font-weight: 400;">Musa's Shop.</h1>
<p>My first e commerce website</p>
<div class="buttons-container">
<button id="login">Login</button>
<button id="signup" style="background-color: white; color: black; border:1px solid black">Signup</button>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>