-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (55 loc) · 1.88 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
48
49
50
51
52
53
54
55
<!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>Create an account</title>
<link rel="stylesheet" href="styley.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css"
/>
</head>
<body>
<h1>Create an account</h1>
<div class="contant">
<div class="form">
<div class="user">
<input type="text" placeholder="Your Name" required class="userinfo" />
<input type="text" placeholder="User Name" required class="userinfo" />
<input
type="email"
placeholder="Enter Your Email " required
class="userinfo"
/>
<input
type="password"
placeholder="Create Your password here" required
class="userinfo"
/>
<input type="checkbox" class="checkbro" />
<label for="terms" class="terms"
>I Accept The Terms And all Conditions
</label>
<br />
<button class="sign-in">Sign Up</button>
</div>
</div>
<div class="login">
<div class="list">
<a href="www.instagram.com" class="social-links">
<i class="bi bi-instagram"></i> Connect us on Instagram</a
> <br>
<a href="www.Google.com" class="social-links">
<i class="bi bi-twitter"></i> Connect us on Twitter</a
> <br>
<a href="www.Google.com" class="social-links">
<i class="bi bi-google"></i> Connect with Google</a
>
</div>
</div>
</div>
<p class="loginbro">I Already have an account <a href="#">Log-in</a> </p>
</body>
</html>