-
Notifications
You must be signed in to change notification settings - Fork 0
/
contacts.php
113 lines (93 loc) · 4.06 KB
/
contacts.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<?php
session_start();
session_destroy();
?>
<html>
<head><script type='text/javascript'>
function SelectAll(id)
{
document.getElementById(id).focus();
document.getElementById(id).select();
}
</script>
<title>ContactUs</title>
<link rel="shortcut icon" type="image/x-icon" href="a.ico">
<style type="text/css">body, a:hover {cursor: url(cur1002.cur), progress !important;}</style>
<style>
.button
{
background-color:#050505;
border-bottom:solid;
border-left: solid;
border-right:solid;
border-top: solid;
color:#f26522;
width:150px;
height:30px;
font-family: AlphaMaleModern
}
#text_box{
float:left;
background:"green";
font-size:12px;
padding:4px 2px;
border:solid 1px "black";
width:200px;
margin:4px 4 20px 10px;
}
</style>
</head>
<body background="back.jpg">
<a href="home.php"><img src="bottom.jpg" border="0"></a>
<div style="width: 250px; height: 300px; float: left">
</div>
</br>
<div style="width: 300px; height: 300px; float: left ;font-family: AlphaMaleModern; color:f26522">
<h1>CONTACT US</h1>
<h3>Aditya Verma</h3>
<p>
<span class="phone">Phone: </span>+91 9691571631</br>
<span class="phone">E-mail: </span>[email protected]
</p>
</p>
<h3>Prateek Jain</h3>
<p>
<span
class="phone">Phone: </span>+91 7828212362</br>
<span
class="phone">E-mail: </span>[email protected]
</p>
<h3>Shubham Agarwal</h3>
<p>
<span
class="phone">Phone: </span>+91 9098090878</br>
<span
class="phone">E-mail: </span>[email protected]
</div>
<div style="width: 150px; height: 300px; float: left">
</div>
<div style="width: 400px; height: 300px; float: left; font-family: AlphaMaleModern; color:f26522">
<h1>OUR ADDRESS </h1>
<iframe width="425" height="200" frameborder="1" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.co.in/maps?f=q&source=s_q&hl=en&geocode=&q=IIITM+gwalior&aq=&sll=26.22403,78.180851&sspn=0.165696,0.338173&ie=UTF8&hq=IIITM+gwalior&t=m&z=14&iwloc=A&cid=17884927282381626249&ll=26.248468,78.174592&output=embed"></iframe><br /><small><a href="https://maps.google.co.in/maps?f=q&source=embed&hl=en&geocode=&q=IIITM+gwalior&aq=&sll=26.22403,78.180851&sspn=0.165696,0.338173&ie=UTF8&hq=IIITM+gwalior&t=m&z=14&iwloc=A&cid=17884927282381626249&ll=26.248468,78.174592" style="color:#0000FF;text-align:left">View Larger Map</a></small>
<p>ABV-INDIAN INSTITUTE OF INFORMATION TECHNOLOGY AND MANAGEMENT </BR>NH-2 MORENA LINK ROAD, GWALIOR
</p>
</div></br></br></br></br></br></br></br></br></br></br></br></br></br>
</br></br></br></br>
<div style="width: 250px; height: 100px; float: left">
</div>
<div style="font-family: AlphaMaleModern; color:f26522">
<h2>QUERIES</h2 >
<form action="MAILTO:[email protected]" method="post" enctype="text/plain">
Name:
<input type="text" name="name" value="Your Name" id="txt_lname" onClick="SelectAll('txt_lname')";>
E-mail:
<input type="text" name="mail" value="Email-Id" id="txt_Id" onClick="SelectAll('txt_Id')";><br><br><div style="width: 250px; height: 100px; float: left">
</div>
Comment:
<input type="text" name="comment" value="Your Query" id="txt_q" onClick="SelectAll('txt_q')"; size="50"><br><br>
<input type="submit" value="Send" class="button">
<input type="reset" value="Reset" class="button">
</form>
</div >
</body>
</html>