-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
92 lines (75 loc) · 3.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style1.css" type="text/css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<title>Jamunadas Orphanage</title>
</head>
<body>
<style>
body{
background-image: url(https://media.istockphoto.com/photos/portrait-of-farm-children-picture-id1130184734?k=6&m=1130184734&s=612x612&w=0&h=eWj1g9ZEx_kAgqfhfBl4PKPtOUs-TVlfpPSBMNg9oko=);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
</style>
<header>
<img class="logo" src="img/logo.png" alt="logo" height="80px" width="90px">
<nav>
<ul class="nav_links">
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="#contact">CONTACT</a></li>
</ul>
</nav>
</header>
<section class="contact">
<h2><u>Contact Us</u></h2>
<div class="contactForm">
<form>
<h2>Send Message</h2>
<div class="inputBox">
<input type="text" name="" required="required" placeholder="Your Name">
</div>
<div class="inputBox">
<input type="email" name="" required="required"placeholder="Email id">
</div>
<div class="inputBox">
<input type="text" required="required"placeholder="Type Your Message here">
</div>
<div class="inputBox">
<input type="submit" name="" value="Send">
</div>
</form>
</div>
<div class="container ">
<div class="contactInfo">
<div class="box">
<div class="icon"><i class="fa fa-map-marker" aria-hidden="true"></i>
</div>
<div class="text">
<h3>4671 Chatrapati Shivaji Road,pune,55060</h3>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-phone" aria-hidden="true"></i></div>
<div class="text">
<h3>9975951149</h3>
</div>
</div>
<div class="box">
<div class="icon"><i class="fa fa-envelope-o" aria-hidden="true"></i>
</div>
<div class="text">
<h3>aaradhyaorphanage@gmail.com</h3>
</div>
</div>
</div>
</div>
</section>
</body>
</html>