-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.43 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 class="logoPage">
<img src="./image/odin-lined.png" alt="">
</div>
<div>
<p class="getStarted">this is not a real online service! <br> you know you need something like this In your life to help you realize your deepest dreams.</p>
<P class="getStarted">Sign Up now to get started.</P>
<p class="getStarted">You know you want to.</p>
<p id="doThis">Let's do this!</p>
<div id="nameInputs" class="names">
<p class="titleOFInputs">FIRST NAME</p>
<input type="text">
<p class="titleOFInputs">LAST NAME</p>
<input type="text">
<p class="titleOFInputs">EMAIL</p>
<input type="text">
<p class="titleOFInputs">PHONE NUMBER</p>
<input type="text">
<p class="titleOFInputs">PASSWORD</p>
<input type="password">
<p class="titleOFInputs">CONFIRM PASSWORD</p>
<input type="text">
</div>
<button>Create Account</button>
<p id="alreadyHave"> Already have an Account? <p id="logIN">Log in</p> </p>
</div>
</body>
<script src="index.js"></script>
</html>