-
Notifications
You must be signed in to change notification settings - Fork 14
/
contact_form.php
52 lines (51 loc) · 1.99 KB
/
contact_form.php
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
<!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>
<?php
include("header.html");
?>
<section>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1> Contact Form </h1>
<p style="padding-bottom:50px;">Any Queries , Drop Contact Form </p>
</div>
<div class="col-md-4" style="border-radius: 6px; border: 3px #a517ba solid;">
<h2 style="padding-top: 30px;">Contact Form</h2>
<form action="contact.php" method="post">
<table>
<tr>
<label style="float: left; position: absolute; margin-top: 25px; margin-left: -160px; outline:none;"> Name :</label>
<td style="padding-top: 50px;"><input placeholder="Enter Your Name" type="text" name="txtName" ></td>
</tr>
<tr >
<label style="float: left; position: absolute; margin-top: 100px; px; margin-left: -160px;"> Email :</label>
<td style="padding-top: 50px;"><input required placeholder="Enter Your Email id " type="email" name="txtEmail"></td>
</tr>
<tr>
<label style="float: left; position: absolute; margin-top: 175px; margin-left: -160px;"> Message :</label>
<td style="padding-top: 50px;"><textarea placeholder="Enter Your Message" name="txtMessage" rows="3" cols="24"></textarea></td>
</tr>
<tr>
<td style="padding-top: 50px; padding-bottom: 30px;"><button class="magnifyBtn">Submit</button></a></td>
</tr>
</table>
</form>
</div>
<div class="col-md-8" style="padding-left: 50px; width: 100%; padding-top: 30px;">
<img src="img/6.svg" alt="" srcset="">
</div>
</div>
</div>
</section>
<?php
include("footer.html");
?>
</body>
</html>