-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (49 loc) · 1.64 KB
/
index.html
File metadata and controls
52 lines (49 loc) · 1.64 KB
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
45
46
47
48
49
50
51
52
<!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">
<title>HTML_CSS_FORM</title>
<link rel="stylesheet" href="/style.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div id="container">
<div class="form-wrap">
<h1>Sign Up</h1>
<p>Lorem ipsum dolor sit amet</p>
<form>
<div class="form-group">
<label for="first-name">First Name</label>
<input type="text" name="firstName" id="first-name">
</div>
<div class="form-group">
<label for="last-name">Last Name</label>
<input type="text" name="lastName" id="last-name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" name="password" id="password">
</div>
<div class="form-group">
<label for="confirm-password">Confirm Password</label>
<input type="password" name="confirm-password" id="confirm-password">
</div>
<button type="submit" class="btn">Sign Up</button>
<div class="bottom-text">
By clicking the sign up button, you agree to our <a href="#">Terms & Condition</a> and <a href="#">Privacy
Policy</a>
</div>
</form>
</div>
<footer>
Already have an account? <a href="#">Login Here</a>
</footer>
</div>
</body>
</html>