-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.79 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 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 class="picture">
<div class="logo">
<img src="assets/odin-lined.png" alt="odin logo" class="odin">
<h3 class="text" style="color: white;">Odin Project</h3>
</div>
</div>
<div class="section">
<h1 class="header">This is not a real service. Lorem ipsum dolor sit amet consectetur, adipisicing elit. Necessitatibus, commodi!Sign up now to get started.</h1>
<div class="formab">
<form action="example.com" method="post" class="above">
<div class="one"><label for="first_name">First Name:</label>
<input type="text" id="first_name" placeholder="Rohan"></div>
<div class="second"><label for="last_name">Last Name:</label>
<input type="text" id="last_name" placeholder="Jha"></div>
<div class="third"><label for="email">Email:</label>
<input type="email" id="email" placeholder="yourname@email.com"></div>
<div class="fourth"><label for="number">Phone Number:</label>
<input type="number" id="number" placeholder="123456789"></div>
<div class="five"><label for="user_password">Password:</label>
<input type="password" id="user_password" name="password"></div>
</form>
</div>
<div class="below">
<button>Create Account</button>
<h4><br>Already have an account <a href="">Log In</a></h4>
</div>
</div>
</body>
</html>