forked from ritesh-2124/Himalaya-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
creat_account.html
140 lines (118 loc) · 4.68 KB
/
creat_account.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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Himalaya willness</title>
<link rel="icon" href="https://cdn.shopify.com/s/files/1/0399/1728/9633/files/H_Logo-01_32x32.png?v=1591028931" type="image/icon type">
<script src="https://kit.fontawesome.com/f15c774cad.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="creat_acc.css">
</head>
<!--start div-->
<div id="shipDiv">
<p id="offers"><span class="free" >FREE SHIPPING </span>ON ALL ORDERS OVER $35!</p>
</div>
<div id="logoDiv">
<div id="logo"><a href="index.html"><img id="logoimg" src="https://cdn.shopify.com/s/files/1/0279/8177/4927/files/new-logo.png?height=628&pad_color=ffffff&v=1596013541&width=1200" ></a></div>
<div>
<ul class="main-nev">
<li><a href="productPage.html">Shop</a></li>
<li><a href="about.html"> About </a></li>
<li><a href="#">Store Locator</a></li>
</ul>
</div>
<div class="iconDiv">
<div class="tooltip"> <i class="fas fa-search"></i>
<span class="tooltiptext">Search</span>
</div>
<!--dropdown-->
<div class="dropdown">
<button class="dropbtn"><i class="far fa-user"></i></button>
<div class="dropdown-content">
<a href="signUP.html">Sign In</a>
<a href="creat_account.html">Register</a>
<a href="cartpage.html">Chekout</a>
</div>
</div>
<div class="tooltip"> <i id="cart" class="fas fa-shopping-bag"></i>
<span class="tooltiptext">cart</span>
</div>
</div>
</div>
<div class="underIcon">
<p>Home </p>
<p>. / Account </p>
<p>. / account</p>
</div>
<!--registration div-->
<div id= "reg">
<h2 id="title-name">Create An Account</h2>
<h3 class="main_title">Personal Information</h3>
<label class="titles" for="name">First Name * * Required Fields</label><br>
<input type="text" id="fname" placeholder="Enter Name">
<br>
<label class="titles" for="name">Last Name *</label><br>
<input type="text" id="lname" placeholder="Enter last Name">
<br>
<label class="titles" for="E-mail">E-mail *</label><br>
<input type="text" id="email" placeholder="E-mail">
<br>
<label class="titles" for="password">password *</label><br>
<input type="password" id="pass" placeholder="password">
<br>
<!-- <button class="mainbtn" id="newreg">CREATE</button> -->
<button class="mainbtn" id="newreg">CREATE ACCOUNT</button>
<br>
<a class="titles" id="forpass" href=""> Or return to store</a>
<br>
</div>
<!--footer div-->
<div id="footer">
<div>
<h3 class="footerdiv"> Info</h3><br>
<p>Contact Us</p><br>
<p>FAQ</p><br>
<p>Blog</p><br>
<p>Store Locator</p><br>
<p>Careers</p>
</div>
<div>
<h3 class="footerdiv"> Policies</h3><br>
<p>Shipping & Returns</p><br>
<p>Terms & Conditions</p><br>
<p> Privacy</p><br>
<p> CCPA</p><br>
<p> Accessibility</p>
</div>
<div>
<h3 class="footerdiv">Contact Us</h3><br>
<h3 class="footrtadd">Email:</h3><br>
<h4 class="ofadd">[email protected]</h4>
<h3 class="footrtadd">Phone:</h3><br>
<h4 class="ofadd">1-800-869-4640</h4>
<p>Mon-Fri, 8am-5pm CT</p><br>
<h3 class="footrtadd">Mail:</h3><br>
<p>Himalaya Wellness</p>
<h4 class="ofadd">1101 Gillingham Lane Sugar Land, TX 77478 </h4>
</div>
<div>
<h3 class="footerdiv">Subscribe to Our Newsletter!</h3><br>
<input id="emailinput" type="text" placeholder="Enter Your e-mail">
<h5 id="emailquery">By entering your email, you agree to our Terms & Conditions and Privacy Policy.</h5>
<div class="social_media">
<h3 class="media">follow Us:</h3>
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-youtube"></i>
</div>
</div>
</div>
<div class="conditions">
<p>© 2021 Himalaya Wellness. All rights reserved.</p>
<h4 class="conditionborder">*THESE STATEMENTS HAVE NOT BEEN EVALUATED BY THE FOOD AND DRUG ADMINISTRATION. THIS PRODUCT IS NOT INTENDED TO DIAGNOSE, TREAT, CURE OR PREVENT ANY DISEASE.</h4>
</div>
</body>
</html>
<script src="creat_account.js"></script>