-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutus.html
108 lines (108 loc) · 5.83 KB
/
aboutus.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
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="shortcut icon" href="Assests/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="styles/aboutus.css">
</head>
<body>
<nav class="navbar">
<div class="navbar-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="news.html">News</a></li>
<li><a href="branches.html">Branches</a></li>
<li><a href="aboutus.html">About US</a></li>
<li><a href="contacts.html">Contact US</a></li>
<li><a href="imagegallery.html">Image Gallery</a></li>
</ul>
</div>
</nav>
<div class="middle">
<img src="Assests/img1.png" alt="">
<img src="Assests/img2.png" alt="">
</div>
<div class="footer">
<div class="footer__contact" style="text-align: center;align-items: center">
<h3>Contact Info</h3>
<div
style="display: flex; width:auto; flex-direction: column; justify-content: space-between;height: 150%; margin: 20px 0 0 10px;">
<table style="height:200px;">
<tr style="margin-top: 10px;">
<td>
<p
style="font-family: Muli, sans-serif; font-size: 16px; font-weight:300; text-align: left;color: #fff;">
Address:</p>
</td>
<td>
<p
style="font-family: Californian FB;font-weight: 300; font-size: 20px;color: #00ff4e;text-align: left; ">
Pratham Foundations,203,Kutchery Road,
Mylapore, Chennai - 600 004.
</p>
</td>
</tr>
<tr>
<td>
<p
style=" font-family: Muli, sans-serif; font-size: 16px; font-weight:300; text-align: left;color: #fff;">
Phone:</p>
</td>
<td>
<p
style="font-family: Californian FB; font-weight: 300; font-size: 20px; color: #00ff4e; text-align: left">
+91 -9344028179 </p>
</td>
</tr>
<tr>
<td>
<p
style="font-family: Muli, sans-serif; font-size: 16px; font-weight:300; text-align: left;color: #fff;">
Email:</p>
</td>
<td>
<p
style="font-family: Californian FB; font-weight: 300;font-size: 20px;color: #00ff4e;text-align: left">
Prathamfoundations@gmail.com</p>
</td>
</tr>
</table>
</div>
</div>
<div class="footer__links">
<h3>Important Links</h3>
<div class="footer__links__links">
<a href="index.html">Home</a>
<a href="news.html">News</a>
<a href="branches.html">Branches</a>
<a href="aboutus.html">About US</a>
<a href="contacts.html">Contact Us</a>
<a href="donateus.html">Donate US</a>
<a href="imagegallery.html">Image Gallery</a>
</div>
</div>
<div class="newsletter">
<h3>News Letter</h3>
<div class="newsletter__contents">
<p>Want to join in our next event or to get updates from our team, enter your email addres</p>
<form action="#popup2">
<div class="text__newsletter">
<input type="email" required placeholder="Email Address" name="" id="">
<button>
<img src="Assests/sendimage.png" alt="">
</button>
<div id="popup2" class="overlay1">
<div class="popup1">
<h2>Thanks for subscribing to us. You will receive all the update</h2>
<a class="close1" href="#">×</a>
</div>
</div>
</div>
</form>
</div>
</div>
</div>
</body>
</html>