-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContact.html
42 lines (42 loc) · 1.44 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
<html>
<head>
<title>formt</title>
</head>
<body text="red">
<h2>Contact US</h2>
<form action="backend.php">
<label for="name">Name</label>
<div>
<input type="text" name="myName" id="name">
</div>
<br>
</div>
<label for="email">Email</label>
<div>
<input type="text" name="myEmail" id="email">
</div>
<br>
<label for="Phone no.">Phone no.</label>
<div>
<input type="text" name="my Phone no." id="Phone no.">
<br><br>
<label for="date">Date</label>
<div>
<input type="date" name="myDate" id="date">
</div>
<br>
Gender: Male<input type="radio" name="myGender">Female<input type="radio" name="myGender">Other <input
type="radio" name="myGender">
</div>
<br>
<div>
<label for="mytex"> Elaborate your concern:</label>
<br><textarea name="mytext" id="mytex" cols="100" rows="10"></textarea>
</div>
<br>
<input type="submit" value="submit now">
<input type="reset" value="reset now">
</div>
</form>
</body>
</html>