forked from cleverbot026/activity_forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForm.html
More file actions
47 lines (30 loc) · 1.25 KB
/
Form.html
File metadata and controls
47 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html>
<head>
<title>Form</title>
<link rel="stylesheet" href="styleform.css">
</head>
<body>
<section class="form">
<div class="form-title">
<h2>Contact Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam.
</div>
<a class="active" href="https://www.facebook.com/https://www.facebook.com/Atencio.C08">Facebook</a>
<a href="https://www.gmail.com/gmailaccount id=https://mail.google.com/mail/u/0/#inbox">Gmail</a>
<center><div class="form-body">
<form name="contactForm" action="#" method="get"> <!-- get - post -->
<!-- <label for="txtName">Username</label> -->
<input type="text" name="txtName" placeholder="Username" required> <input type="email" name="txtEmail" placeholder="Email (Optional)"> <input type="password" name="txtPass" placeholder="Password" required>
</select>
<input type="checkbox" name="chkAgree" value="Agree"> <label for="chkAgree">I agree to the terms and conditions.</label>
<div class="btns">
<input type="submit" value="Submit" name="btnSubmit">
<input type="reset" value="Clear" name="btnClear">
</div></center>
</form>
</div>
</section>
</body>
</html>