-
Notifications
You must be signed in to change notification settings - Fork 0
/
imagegallery.html
137 lines (134 loc) · 6.08 KB
/
imagegallery.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="Assests/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="styles/gallery.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles/style.css">
<title>Gallery</title>
<style>
body {
text-align: center;
}
</style>
</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="header">
Image Gallery
</div>
<div class="slide-show" >
<img src="Assests/slideshow images/gallery1.gif">
</div>
<div class="video1">
<video width="700px" height="550px" style="outline: none; border: solid; padding: 5px;" controls>
<source src="Assests/video1.mp4"
type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
<div class="slide-show" >
<img src="Assests/slideshow images/gallery2.gif">
</div>
</div>
<div class="video1">
<video width="auto" height="auto" style=" outline: none; border: solid; height: auto; padding: 5px;" controls>
<source src="Assests/video2.mp4" '
type="video/mp4">
Your browser does not support the video tag.
</video>
</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">
</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>