-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
96 lines (66 loc) · 2.82 KB
/
contact.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>Contact us at [email protected]</h1>
<form action="" autocomplete="off">
<label for="fname">Enter your First name:</label>
<input type="text" name="" id="fname" placeholder="first name"> <br>
<label for="lname">Enter your Last name:</label>
<input type="text" name="" id="lname" placeholder="Last name"> <br>
<label for="dob">Enter yout Dob</label>
<input type="date" id="dob"> <br>
<label for="Favc">Enter your Fav Color:</label>
<input type="color" id="Favc"><br>
<label for="email">Enter your email:</label>
<input type="email" id="email"><br>
<label for="pas">Enter your Password:</label>
<input type="password" name="" id="pass"><br>
<label for="cars">Enter your Favourite game:</label>
<select name="cars" id="cars">
<option value="GTA">GTA5</option>
<option value="COD">COD</option>
<option value="CUPHEAD">CUPHEAD</option>
</select><br>
<label >have you subscribed?</label>
<label for="yes">Yes</label>
<input type="radio" id="yes" name="chec">
<label for="no">No</label>
<input type="radio" id="no" name="chec"><br>
<label for="Comment">Comment:</label><br>
<textarea name="" id="Comment" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit">
</form>
<!-- <form action="" autocomplete="off">
<label for="fname">Enter your First Name:</label>
<input type="text" id="fname" placeholder="First Name"><br>
<label for="lname">Enter your Last Name:</label>
<input type="text" id="lname" placeholder="Last Name"><br>
<label for="dob">Enter your DataofBirth:</label>
<input type="date" name="" id="dob"><br>
<label for="Favc">Enter your Fav Color:</label>
<input type="color" id="Favc"><br>
<label for="email">Enter your email:</label>
<input type="email" id="email"><br>
<label for="pas">Enter your Password:</label>
<input type="password" name="" id="pass"><br>
<label for="youtube">Enter your Favourite game:</label>
<select name="cars" id="cars">
<option value="GTA">GTA5</option>
<option value="COD">COD</option>
<option value="CUPHEAD">CUPHEAD</option>
</select><br>
<label >have you subscribed?</label>
<label for="yes">Yes</label>
<input type="radio" id="yes" name="chec">
<label for="no">No</label>
<input type="radio" id="no" name="chec"><br>
<label for="Comment">Comment:</label><br>
<textarea name="" id="Comment" cols="30" rows="10"></textarea><br>
<input type="submit" value="submit"> -->
</body>
</html>