-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
24 lines (23 loc) · 950 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="javascript1.js"></script>
</head>
<body>
<div id="form" class="submit-form">
<form name='registration' onSubmit="return formValidation();">
<h2 id="topline">Quick Contact Form</h2>
<h5 id="headline">Contact us today, and get reply within 24 hours</h5>
<input type="text" name="Name" placeholder="ENTER YOUR NAME " size="50px;"><br><br>
<input type="text" name="Email" placeholder="ENTER YOUR E-MAIL ID" size="50px;"><br><br>
<input type="text" name="city" placeholder="ENTER YOUR CITY" size="50px;"><br><br>
<input type="text" name="Number" placeholder="ENTER YOUR MOBILE NO." size="50px;"><br><br>
<textarea rows="8" cols="60" name="comments" id="comments" placeholder="ASK YOUR QUERY"></textarea> <br><br>
<input type="submit" name="submit" value="SUBMIT">
</form>
</div>
</body>
</html>