-
Notifications
You must be signed in to change notification settings - Fork 0
/
simple_form.html
61 lines (61 loc) · 1.59 KB
/
simple_form.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="simple html form">
<meta name="author" content="Chidanand Pujar">
<meta content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="form_style.css">
<title>Sign Up Form</title>
<style>
.class1 {
color:green;
}
</style>
</head>
<body>
<h2>SIGN UP</h2>
<form>
First Name: <input type="text" name="fname" maxlength="20" required autofocus>
<br/>
<br/>
Last Name: <input type="text" name="lname" required>
<br/>
<br/>
company: <input type="text" name="cmpny" required>
<br/>
<br/>
Email: <input type="mail" name="email" required>
<p>Verify Email:</p>
<input type="radio" name="verify" value="Yes"> Yes
<input type="radio" name="verify" value="No"> No
<br/>
<br/>
Contact No: <input type="mobile" name="mob" required>
<p>Verify Contact:</p>
<input type="checkbox" name="Verify" value="on" checked> Yes
<input type="checkbox" name="Ignore" value="on"> No
<br/>
<br/>
Password: <input type="password" name="passwd" required >
<br/>
<br/>
Address: <br/>
<textarea rows="3" cols="40" name="address">
Enter Address
</textarea>
<br/>
<br/>
<input type="submit" name="submit" value="Submit">
<input type="reset" name="reset" value="Reset">
<br/>
<button class="class1">Create My Account</button>
</form>
<p>Subscription Charges:</p>
<table>
<tr><th>Subscription Duration</th><th>Subscription Charges</th></tr>
<tr><td>Monthly</td><td>999</td></tr>
<tr><td>6 Months</td><td>2999</td></tr>
<tr><td>Yearly</td><td>6999</td></tr>
</table>
</body>
</html>