-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
187 lines (180 loc) · 4.24 KB
/
Contact.html
File metadata and controls
187 lines (180 loc) · 4.24 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
<!DOCTYPE html>
<html>
<head>
<meta charset="ISO-8859-1">
<title>Contact</title>
</head>
<style>ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color:white;
}
li {
float: right;
color:Blue;
}
ul li a
{
font-size:16px;
}
li a {
font-size: 16px;
display: block;
color: blue;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color:#ffcc00;
border-radius:30px;
}
.active {
background-color: #ffcc00;
border-radius:30px;
}
.button a{
border-radius:60px;
border: none;
color: White;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
background-color:Blue;
}
.box
{
text-align:center;
margin-top:60px;
}
.box input[type=text],input[type=email]
{
width:30%;
height:40px;
background-color:white;
color:black;
font-family:arial;
font-weight:bold;
border:2px solid white;
border-radius:17px;
transform-translate:(-50%,-50%);
box-shadow:0 15px 25px rgba(0,0,0,.8);
}
.box textarea
{
transform-translate:(-50%,-50%);
box-shadow:0 15px 25px rgba(0,0,0,.8);
background-color:white;
color:black;
border:2px solid white;
border:intent;
font-size:18px;
}
.box [type=submit]
{
font-size:16px;
color:white;
background-color:blue;
border:2px solid blue;
border-radius:15px;
width:10%;
height:30px;
font-family:arial;
font-weight:bold;
}
.home
{
background-color: #ffcc00;
border-radius:30px;
}
.card {
width:500px;
height:600px;
margin:60px;
border-radius:25px;
font-family:arial;
font-weight:bold;
float:left;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card img
{
width:500px;
height:300px;
}
.container {
padding: 2px 16px;
}
.lower
{
color:blue;}
.button1
{
width:200px;
margin-left:30px;
text-align:center;
}</style>
<body>
<ul>
<li class="button"><a href="info.html">Register</a></li>
<li ><a href="Contact.html">Contact</a></li>
<li><a href="About.html">About</a></li>
<li ><a class="active" href="Index.html">Home</a></li>
<li style="float:left;color:Black; font-size: 46px;">Oxgylinder</li>
</ul>
<div class="home">
<hr>
<h2 style="text-align:center">Contact Us</h2>
<p style="text-align:center"> For all quries and email us using below form</p>
<div class="box">
<h1>How can we help you?</h1>
<form action="mailto:riyapandey730@gmail.com" method="post" enctype="text/plain">
<label for="name"> </label>
<input type="text" name="name" placeholder="Your name.."required >
<br>
<br>
<label for="lname"></label>
<input type="email" name="email" placeholder="Your email.." required>
<br>
<br>
<label for="message"></label>
<textarea name="message" rows="5" cols="30" placeholder="Message..." maxlength="6000" required></textarea><br><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
<div class="card">
<img src="C:\Users\Win- 10\Documents\Human-Face-2.png" alt="Avatar" style="">
<div class="container">
<h4 style="font-size:24px"><b>Helper Role</b></h4>
<p>They just share their oxgyen meter or pulse meter at cheap price help others to get treat their self at home its like reusablitity</p>
</div>
</div>
<div class="card">
<img src="C:\Users\Win- 10\Documents\Human-Face-1.png" alt="Avatar" style="">
<div class="container">
<h4 style="font-size:24px "><b>Need Role</b></h4>
<p>Many of people are not afford oxygen cylinder or pulse meter So here you can get your need at cheap price also you dont need to go hospital
just click the get button and search from their by your district or by your pincode then you got your oxgyen cylinder near by you at affordable
price at you home no need to register</p>
</div>
</div>
</body>
<script language="JavaScript">
var frmvalidator = new Validator("contact");
frmvalidator.addValidation("name","req","Please provide your name");
frmvalidator.addValidation("email","req","Please provide your email");
frmvalidator.addValidation("email","email",
"Please enter a valid email address");
</script>
</html>