-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.php
More file actions
103 lines (86 loc) · 2.2 KB
/
help.php
File metadata and controls
103 lines (86 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AllMedical</title>
<style title="MainDiv">
body {
background-image: url(img/background.jpg);
font-family: Helvetica;
font-weight: bold;
font-size: 12px;
color: #424242;
}
div {
background-color: #BFBFBF;
alignment-adjust: central;
background-image: url(img/background-div.png);
}
img {
border: 20px solid rgba(255, 0, 0, 0);
background-clip: padding-box;
}
a:link {
color: #373737;
text-decoration: none;
}
a:visited {
color: #373737;
}
a:hover {
color: #5B5B5B;
}
a:active {
color: #373737;
}
#center {
margin-left: auto;
margin-right: auto;
width: 500px;
height: auto;
border-radius: 1px;
box-shadow: 0px 0px 0px 8px rgba(0,0,0,0.3);
}
#waw {
background-color: rgba(0, 0, 0, 0);
background-image: url(img/who-are-we.png);
width: 224px;
height: 62px;
}
#text {
padding-left:5em;
padding-right:5em;
width: 300px;
height: auto;
alignment-adjust: left;
}
</style>
</head>
<body>
<br /><br /><br />
<div id="center" align="center">
<br><br><br>
<a href="/wad"><img src="img/AllMedical-logo.png" alt="logo" title="logo"/></a>
<div id="waw"></div>
<div id="text" align="left"><p> We are a website dedicated to simplifying all secretarial aspects of going to the doctor. </p></div>
<p>Contact us</p>
<form name="contactform" method="post" action="contact-email.php">
<table>
<tr>
<td><label for="name">Name<font color="#990033">*</font></label></td>
<td><input type="text" name="name" required></td>
</tr>
<tr>
<td><label for="email">E-mail<font color="#990033">*</font></label></td>
<td><input type="email" name="email" required></td></td>
</tr>
<tr>
<td valign="top"><label for="message">Message<font color="#990033">*</font></label></td>
<td><textarea name="message" maxlength="1000" cols="25" rows="6" required></textarea></td>
</tr>
</table>
<input type="submit" value="Submit">
</form>
<br><br><br>
</div>
</body>
</html>