-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CSS Form Assignment</title>
<link rel="stylesheet" href="style.css">
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<div class="main">
<div class="header"><h1>Register</h1></div>
<p id="sign">Already member? <span>Sign in</span></p>
<div class="icon">
<button id="facebook"><i class="fa-brands fa-facebook-f"></i></button>
<button id="twiter"><i class="fa-brands fa-twitter"></i></button>
<button id="google"><i class="fa-brands fa-google"></i></button>
<button id="linked"><i class="fa-brands fa-linkedin-in"></i></button>
</div><br>
<input type="text" placeholder="username" id="user"> <br>
<input type="email" placeholder="email" id="email"><br>
<input type="number" placeholder="phone" id="phone"><br>
<input type="password" placeholder="password" id="password"><i class="fa-regular fa-eye"></i><br>
<input type="password" placeholder="repeat password" id="reset-pass"><i class="fa-regular fa-eye"></i><br>
<p>By clicking register you agree to our <span>terms of service</span> </p>
<div class="footer">
<button>REGISTER</button>
</div>
</div>
</body>
</html>