-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
107 lines (104 loc) · 3.12 KB
/
contact.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="keywords" content="HOSPITAL,HOSPITAL.COM,HOSPITAL WEBSITE, MEDICAN">
<meta name="description" content="india's best hospital website of indian">
<meta name="author" content="hospital.com">
<title>hospital.com</title>
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/fontawesome/css/all.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
</head>
<body>
<!-- Start Header Coding-->
<header>
<div class="menu">
<!-- Start Brand name coding-->
<div class="brand-name">
<a href="index.html">
<h2 class="animated flash">
<i class="fa fa-hospital"></i>
Care&Cure</h2>
</a>
</div>
<!-- End Brand name coding-->
<!-- Start Nav coding & menu coding -->
<nav>
<ul>
<li><a href="gallery.html" style="color:#FF0000;">Emergency 24X7</a></li>
<li><a href="contact.html">Schedule an appointment</a></li>
<li><a href="register.html">Register</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="gallery.html">Gallery</a></li>
</ul>
</nav>
<!-- End Nav coding & menu coding -->
</div>
</header>
<!-- End Header Coding-->
<!-- Start Section Coding-->
<section>
<div class="w-80">
<div class="form-box">
<h1>Contact Us</h1>
<hr>
<form>
<label for="fullname"><b>Your name :</b></label><br/>
<input type="text" name="name" id="fullname" placeholder="Enter Fullname">
<br/><br/>
<label for="email"><b>Email :</b></label>
<br/>
<input type="email" name="email" id="email" placeholder="Enter Your Email">
<br/><br/>
<label for="message"><b>Your message :</b></label>
<br/>
<textarea id="message" placeholder="Enter Your Message"></textarea>
<br/><br/>
<button type="submit" id="contact-btn">Send Email</button>
</form>
</div>
</div>
</section>
<!-- End Section Coding-->
<!-- Start Footer Coding-->
<footer>
<div class="w-80">
<div class="footer-box">
<h2>Services</h2>
<a href="#">HEPATOLOGY</a>
<a href="#">MEDICAL DRESSAGE</a>
<a href="#">LABORATORY</a>
<a href="#">VACCINATIONS</a>
<a href="#">WHITENING</a>
</div>
<div class="footer-box">
<h2>About Us</h2>
<a href="#">Company Overview</a>
<a href="#">Management</a>
<a href="#">Initiatives</a>
<a href="#">Carrers</a>
<a href="#">Our Doctors Achieve</a>
</div>
<div class="footer-box">
<h2>Contact Us</h2>
<a href="#">Post a Query</a>
<a href="#">Apollo Clinics</a>
<a href="#">Reach Hospitals</a>
<a href="#">Apollo Cradle</a>
<a href="#">Ask Question</a>
</div>
<div class="footer-box">
<h2>Facilities</h2>
<a href="#">HEPATOLOGY</a>
<a href="#">MEDICAL DRESSAGE</a>
<a href="#">LABORATORY</a>
<a href="#">VACCINATIONS</a>
<a href="#">WHITENING</a>
</div>
</div>
</footer>
<!-- End footer Coding-->
</body>
</html>