-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathform.html
More file actions
60 lines (59 loc) · 2.61 KB
/
form.html
File metadata and controls
60 lines (59 loc) · 2.61 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forms</title>
</head>
<style>
div { position: absolute; border:1em groove darkblue }
#n1 { background-color:lightcoral; top: 28%; left: 50%; right: -3%; bottom: -90% }
</style>
<body bgcolor="skyblue">
<div id="n1">
<img src="support.jpg" alt="support-staffs" width="100%" height="100%" >
</div>
<h1 align="center" style="color:red; text-shadow: 2px 2px 2px darkviolet;"><b><u>QUERY FORM</u></b></h1>
<marquee direction="left" width="100%" height="75px" scrollamount="10" vspace="5" bgcolor="orange"><h1 style="color:darkgreen;">Kindly fill this form for your queries.Our Support agents will get in touch with you as soon as possible.Thank you!!!</h1></marquee>
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"><br>
<label for="phone">Phone number:</label><br>
<input type="text" id="phone" name="phone">
</form>
<p>Choose your divison in which you have queries</p>
<form>
<input type="radio" id="html" name="fav_language" value="HTML">
<label for="html">Purchase</label><br>
<input type="radio" id="css" name="fav_language" value="CSS">
<label for="css">Logistics</label><br>
<input type="radio" id="javascript" name="fav_language" value="JavaScript">
<label for="javascript">Maintenance</label>
</form>
<p>Choose your sectors of interest to discuss</p>
<form>
<input type="checkbox" id="vehicle1" name="vehicle1" value="Bike">
<label for="vehicle1"> Football</label><br>
<input type="checkbox" id="vehicle2" name="vehicle2" value="Car">
<label for="vehicle2"> Cricket</label><br>
<input type="checkbox" id="vehicle3" name="vehicle3" value="Boat">
<label for="vehicle3"> Badminton</label><br>
<input type="checkbox" id="vehicle4" name="vehicle4" value="ship">
<label for="vehicle4"> Volleyball</label>
</form>
<p>Kindly provide your preffered email ID</p>
<form>
<label for="email">Enter your email:</label>
<input type="email" id="email" name="email">
</form>
<p>Briefly describe your queries here so that our staffs can understand the problem better</p>
<form>
<textarea name="message" rows="30" cols="50">
     Please write here (150-200 words)
</textarea>
</form>
<button type="button" onclick="alert('Successfully Submitted!!')">Submit</button>
</body>
</html>