-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
81 lines (79 loc) · 3.97 KB
/
signup.html
File metadata and controls
81 lines (79 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home</title>
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/stylesheet/style.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700&display=swap" rel="stylesheet">
<!-- Font-Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>
<body>
<section class="header-section">
<div class="wrapper flex" >
<a class="logo" href="home.html">
<div>
<span class="bold_span">B</span><span class="regular_span">aggage</span>
<h5 class="margin-top">online store</h5>
</div>
</a>
<div class="fas">
<a href="signup.html">
<i class=" header-icons i-class fas fa-user-circle"></i> <span class="icon-text"> Sign Up</span>
</a>
<a href="signin.html">
<i class=" header-icons i-class fas fa-edit"> </i> <span class="icon-text">Sign In</span>
</a>
</div>
</div>
<hr>
<div class="navbar flex">
<div>
<nav>
<ul>
<li class="list">
<a class="links fixed-link" href="">HOME</a>
</li>
<li class="list">
<a class="links" href="about.html">ABOUT US</a>
</li>
<li class="list">
<a class="links" href="">DROPDOWN</a><i class="fas fa-chevron-down dropdown-arrow"></i>
</li>
<li class="list">
<a class="links" href="collections.html">COLLECTIONS</a>
</li>
<li class="list">
<a class="links" href="contact.html">CONTACT</a>
</li>
</ul>
</nav>
</div>
<div class="form">
<form action="#" method="post">
<input class="search" type="search" placeholder="Search here..." required="">
<button class="form-control btn-form" value="">
<span class="fa fa-search"></span>
</button>
</form>
</div>
</div>
</section>
<div class="padding wrapper">
<div class=" text-center"><i class="fas fa-user-circle icon-form"></i></div>
<div>
<form class="text-center" action="">
<p><input class="input-class" type="text" name="Name" placeholder="User Name"></p>
<p><input class="input-class" type="text" name="Email" placeholder="User Email"></p>
<p><input class="input-class" type="text" name="Number" placeholder="UserPhone"></p>
<p><input class="input-class" type="text" name="Password" placeholder="Password"></p>
</form>
<div class="text-center"><button class="btn btn-type-2">SIGN UP</button></div>
<div class="text-center"><a class="link-form" href="">BY CLICKING SIGNUP, I AGREE TO YOUR TERMS</a></div>
</div>
</div>
</body>