-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
137 lines (90 loc) · 2.23 KB
/
footer.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<head>
<style>
*{
margin:0;
padding:0;
}
div.xx{
margin-left:80px;
font-size: 25px;
color: white;
}
div.xz{
float:right;
margin-right: 50px;
margin-top: -100px;
font-size: 20px;
color: white;
}
.mc
{
width: 75%;
height: 43px;
padding: 12px 20px;
margin-left: 80px;
margin-top: 25px;
display: inline-block;
border: 1px solid #ccc;
border-bottom-left-radius: 4px;
border-top-left-radius: 4px;
border-bottom-right-radius: 0px;
border-top-right-radius: 0px;
box-sizing: border-box;
font-style: courier;
}
.buttoon
{
float: right;
margin-right: 97px;
margin-top: -43px;
background-color:green;
border-top-right-radius: 4px;
border-bottom-right-radius: 4px;
color: white;
font-family: verdana;
font-size: 17px;
height:43px;
width:160px;
cursor: pointer;
border: 2px solid green;
}
</style>
<title>
footer
</title>
<script>
function validateForm() {
var y = document.forms["myForm"]["subscribe_mail"].value; /*value of entered email stored in y*/
if(y=="")
{
alert("Enter your email");
return false;
}
}
</script>
</head>
<body>
<div style="background-color:black; border-radius:6px; width:1350px; height: 340px">
<form method="post" action="subscribe.php" onsubmit="return validateForm()" name="myForm">
<input class="mc" type="text" name="subscribe_mail" placeholder="Email..." ><br>
<button type="submit" class="buttoon">Subscribe</button>
</form>
<br><br>
<div class="xx">
<h3>Contact Us:</h3>
<p style="font-size: 20px">Room No. 152,BH-2,<br>IIITM Gwalior,<br>474015</p>
</div>
<div class="xz">
:7441183308<br>
:7898378532<br>
:techon.services@gmail.com<br>
</div>
<div style="float: right;margin-right: 280px;margin-top:-100px">
<img src="icons/call.png" style="width: 22px"><br>
<img src="icons/whatsapp.png" style="width: 22px;"><br>
<img src="icons/gmail.png" style="width: 22px"><br>
</div>
<p style=" font-size: 20px; font-weight:bold; color:white; margin-left:500px;">All Rights Reserved || TechOn.com</p>
</div>
</body>