-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactus.html
More file actions
77 lines (70 loc) · 2.58 KB
/
Copy pathcontactus.html
File metadata and controls
77 lines (70 loc) · 2.58 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
<!DOCTYPE html>
<html>
<head>
<title>Immunization Tracker: Contact Us</title>
<style>
body {
background: url(https://picsum.photos/id/385/1000/1000);
background-size: 100% 100%;
}
</style>
<link rel="stylesheet" href="./css/index.css" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Source Sans Pro|Merriweather" rel="stylesheet">
</head>
<body>
<div class="main-container">
<div class="header">
<h1 class="text">Immunization Tracker: Contact Us</h1>
</div>
<div class="navbtns">
<div class="navigation">
<div class="btn"> <a href="./index.html">BACK</a></div>
</div>
</div>
<!-- contact section starts here -->
<section class="contact" id="contact">
<div class="container">
<div class="contact-caption clearfix">
<div class="contact-heading text-center">
<h2>Contact us</h2>
</div>
<div class="col-md-5 contact-info text-left">
<h3>contact information</h3>
<div class="info-detail">
<ul>
<li><i class="fa fa-calendar"></i><span>Monday - Friday:</span> 9:30 AM to 6:30 PM</li>
</ul>
<ul>
<li><i class="fa fa-map-marker"></i><span>Address:</span> 123 Some Street, USA </li>
</ul>
<ul>
<li><i class="fa fa-phone"></i><span>Phone:</span> (000) 0000 0000</li>
</ul>
<ul>
<li><i class="fa fa-fax"></i><span>Fax:</span> (000) 0000 000</li>
</ul>
<ul>
<li><i class="fa fa-envelope"></i><span>Email:</span>info@immunization-tracker.com</li>
</ul>
</div>
</div>
<div class="col-md-6 col-md-offset-1 contact-form">
<h3>leave us a message</h3>
<form class="form">
<input class="name" type="text" placeholder="Name">
<input class="email" type="email" placeholder="Email">
<input class="phone" type="text" placeholder="Phone No:">
<textarea class="message" name="message" id="message" cols="30" rows="10"
placeholder="Message"></textarea>
<input class="submit-btn" type="submit" value="SUBMIT">
</form>
</div>
</div>
</div>
</section><!-- end of contact section -->
<div class="footer">
<p class="copyright"> Immunization Tracker, Copyright © 2019</p>
</div>
</body>