-
Notifications
You must be signed in to change notification settings - Fork 0
/
sign_up.html
45 lines (43 loc) · 1.97 KB
/
sign_up.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Amazon Registration
</title>
<link rel="icon" type="image/x-icon" href="./images/Amazon_title_logo.png" />
<link rel="stylesheet" href="./Assests/style.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
</head>
<body>
<section id="registration">
<div class="register-contanier">
<img src="./images/amazon_logo.png" alt="">
<span class="register-small-heading">.in</span>
</div>
</section>
<section id="register-form">
<div class="form-contanier">
<span>Create Account</span>
<label for="Your Name">Your Name</label>
<input type="text" name="" id="Your Name" placeholder="First and Last name">
<label for="Mobile no" class="label2">Mobile Number</label>
<input type="text" name="" id="Mobile no" class="input2" placeholder="Mobile number">
<label for="email" class="label3">Email(optional)</label>
<input type="text" name="" id="email" class="input3" placeholder="Enter email">
<label for="Password" class="label4">Password</label>
<input type="text" name="" id="Password" class="input4" placeholder="At least 6 character">
<span class="form-span">To verify your number, we will send you a text message with a temporary code. Message and data rates may apply.</span>
<button class="form-btn">Continue</button>
<ul class="form-footer">
<li class="form-li-fotter">Conditions of Use & Sale
Privacy Notice
Interest-Based Ads <br>
© 1996-2023, Amazon.com, Inc. or its affiliates
</li>
</ul>
</div>
</section>
</body>
</html>