-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathSignup.html
More file actions
83 lines (78 loc) · 2.96 KB
/
Signup.html
File metadata and controls
83 lines (78 loc) · 2.96 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Signup</title>
<link rel="stylesheet" href="css/signup.css">
</head>
<body>
<!---Add your navbar here with all the pages linked to it-->
<header>
<div class="navbar">
<div class="logo">
<a href="/index.html"><img src="/Asset/icons8-amazon-50.png"></a>
</div>
<div class="location">
<span>Deliver to Thane 400601</span>
<a class="Updateclass" href="#">Update location</a>
</div>
<div class="search-bar">
<select>
<option>All</option>
</select>
<input type="text" placeholder="Search Amazon.in">
<button>
<img src="/Asset/magnifying-glass.png" alt="Search Icon">
</button>
</div>
<div class="account-links">
<div><a href="/login.html">Login</a></div>
<div><a href="/Signup.html">SignUp</a></div>
<div><a href="/product.html" class="cart">
<img src="/Asset/icons8-cart-50.png" alt="Cart Icon">
Our Products
</a></div>
<div><a href="/contactus.html">Contact Us</a></div>
</div>
</div>
<div class="sub-navbar">
<div class="boxsub">
<a href="#">All</a>
<a href="#">Fresh</a>
<a href="#">MX Player</a>
<a href="#">Sell</a>
<a href="#">Best Sellers</a>
<a href="#">Today's Deals</a>
<a href="#">Mobiles</a>
<a href="#">Electronics</a>
<a href="#">Home & Kitchen</a>
<a href="#">Prime</a>
<a href="#">Customer Service</a>
</div>
</div>
</header>
<!----signup page with hover effect and responsiveness-->
<div class="container">
<div class="form-box">
<h2>Create Account</h2>
<form>
<div class="input-group">
<label for="name">Your Name</label>
<input type="text" id="name" placeholder="Enter your name" required>
</div>
<div class="input-group">
<label for="email">Email</label>
<input type="email" id="email" placeholder="Enter your email" required>
</div>
<div class="input-group">
<label for="password">Password</label>
<input type="password" id="password" placeholder="Enter your password" required>
</div>
<button type="submit" class="signup-btn">Sign Up</button>
</form>
<p>Already have an account? <a href="#">Sign in</a></p>
</div>
</div>
</body>
</html>