-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@100&family=Lobster&family=Mukta:wght@200;300;400&family=Passion+One&family=Poppins:wght@200;400&family=Raleway:ital,wght@0,100;1,100&family=Roboto+Condensed&family=Roboto:ital,wght@0,500;1,100&family=Rubik+Bubbles&family=Rubik+Storm&family=Secular+One&family=Unbounded:wght@200;500&display=swap" rel="stylesheet">
<title>Document</title>
</head>
<body>
<div class="container">
<h1>Sign Up</h1>
<form>
<div class="input">
<input type="name " placeholder="Name" required>
</div>
<div class="input">
<input type="username" placeholder="Username" required>
<i class='bx bxs-user' ></i>
</div>
<div class="input">
<input type="email" placeholder="Email" required>
<i class='bx bxs-envelope' ></i>
</div>
<div class="input">
<input type="password" placeholder="Password" required>
<i class='bx bxs-lock-alt'></i>
</div>
<div class="button">
<button>Sign Up</button>
</div>
<div class="or">
<p>or</p>
</div>
<div class="button">
<button><i class='bx bxl-google'></i></button>
</div>
</form>
</div>
</body>
</html>