-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact-body.php
43 lines (43 loc) · 2.52 KB
/
contact-body.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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/reset.css"> <!-- CSS reset -->
<link rel="stylesheet" href="css/style.css"> <!-- Resource style -->
<link rel="stylesheet" href="css/style0.css">
<link href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
<script src="js/modernizr.js"></script> <!-- Modernizr -->
<title>Click-Kart</title>
</head>
<body>
<?php include 'menu.php';?>
<div class="main">
<div class="wrap">
<div class="preview-page">
<div class="contact_info">
<div class="map">
<iframe width="100%" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.in/maps?f=q&source=s_q&hl=en&geocode=&q=Jaypee+Institue+of+Information+Technology&aq=4&oq=light&sll=28.630425,77.372136&sspn=0.04941,0.104628&ie=UTF8&hq=&hnear=&t=m&z=14&ll=28.630425,77.372136&output=embed"></iframe><br><small><a href="https://maps.google.co.in/maps?f=q&source=s_q&hl=en&geocode=&q=Jaypee+Institue+of+Information+Technology&aq=4&oq=light&sll=28.630425,77.372136&sspn=0.04941,0.104628&ie=UTF8&hq=&hnear=&t=m&z=14&ll=28.630425,77.372136&output=embed" style="color:#888;text-align:left;font-size:0.85em">View Larger Map</a></small>
</div>
</div>
<div class="contact-form">
<h3>Contact Us</h3>
<form method="post">
<div>
<input name="userName" type="text" class="textbox textbox1" value="Name..." onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Name...';}" >
<input name="userEmail" type="text" class="textbox" value="Email..." onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Email...';}">
<input name="usersubject" type="text" class="textbox" value="Subject..." onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Subject...';}">
<div class="clear"></div>
</div>
<div>
<span><textarea name="userMsg" value="Message:" onfocus="this.value = '';" onblur="if (this.value == '') {this.value = 'Message';}">Message </textarea></span>
</div>
<div>
<input type="submit" value="Submit" class="mybutton">
<div class="clear"></div>
</div>
</form>
</div>
</div>
</div>
</div>