-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (44 loc) · 1.47 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
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="layout.css" />
<link
href="https://fonts.googleapis.com/css2?family=Montserrat&display=swap"
rel="stylesheet"
/>
<title>Document</title>
</head>
<body>
<div class="container">
<h1 class="title">Sign Up</h1>
<p>It's free and only takes a minute</p>
<form action="/action_page.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" />
<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" />
<label for="Email">Email</label>
<input type="text" id="Email" name="Email" />
<label for="Password">Password</label>
<input type="text" id="Password" name="Password" />
<label for="Confirm">Confirm password</label>
<input type="text" id="Confirm" name="Confirm" />
<input type="submit" value="SIGN UP" id="btn_s" />
</form>
<section class="SUBMIT">
<p>
<span
>By clicking the Sign Up button, you agree to our
<a href="login">Terms & Conditions</a> and
<a href="login">Privacy Policy </a></span
>
</p>
</section>
</div>
<footer>
<span>Already have an account? <a href="login">Login here</a></span>
</footer>
</body>
</html>