-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.72 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
<!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">
<link rel="stylesheet" href="style.css">
<title>Sign up form</title>
</head>
<body>
<div id="container">
<div class="image">
<div class="logo">
<img src="" alt="">
</div>
</div>
<div class="content">
<div class="heading">
<p>This is not a real online service! You know you need something like this in your life to help you</p>
<p>realize your deepest dreams. Sign up now to get started.</p>
<p>Sign up now to get started.</p>
<p>You know you want to.</p>
</div>
<fieldset>
<form action=""><label for="firstName">FIRST NAME</label><input type="text" name="firstName"></form>
<form action=""><label for="lastName">LAST NAME</label><input type="text" name="lastName"></form>
<form action=""><label for="email">EMAIL</label><input type="email" name="email"></form>
<form action=""><label for="phoneNumber">PHONE NUMBER</label><input type="number" name="phoneNumber"></form>
<form action=""><label for="password">PASSWORD</label><input type="password" name="passowrd"></form>
<form action=""><label for="confirmPassword">CONFIRM PASSWORD</label><input type="password" name="confirmPassowrd"></form>
</fieldset>
<button>Create Account</button>
<div class="account">Already have account?<a href="">Log In</a></div>
</div>
</div>
</body>
</html>