-
Notifications
You must be signed in to change notification settings - Fork 1
/
gallery.html
136 lines (125 loc) · 3.36 KB
/
gallery.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Enjen Gallery</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="keywords" content="Enjen , IT traning, Linux, C, Java, FrontEnd, Android Development, Testing, Network Training" />
<link rel = "stylesheet" type = "text/css" href = "css/container.css">
<script type="text/javascript" src="js/fun.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--[if lte IE 8]><script src="js/html5shiv.js"></script><![endif]-->
<style>
.foot
{
position:absolute;
bottom:0px;
display:block;
}
body{color:black;
}
div.gallery {
border: 1px solid #ccc;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: auto;
}
div.desc {
padding: 15px;
text-align: center;
}
* {
box-sizing: border-box;
}
.responsived {
padding: 0 6px;
float: left;
width: 24.99999%;
}
@media only screen and (max-width: 700px) {
.responsived {
width: 49.99999%;
margin: 6px 0;
}
}
@media only screen and (max-width: 500px) {
.responsived {
width: 100%;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
</style>
</head>
<body>
<div class="topnav" id="myTopnav">
<a href="index.html">Home</a>
<div class="dropdown">
<button class="dropbtn">Products
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="sprayerBot.html">Sprayer Bot</a>
<a href="pickerBot.html">Picker Bot</a>
<a href="weedBot.html">Weeder Bot</a>
</div>
</div>
<a href="contact.html">Contact</a>
<a href="#gallery" class="active">Gallery</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myNavigator()">☰</a>
</div>
<h2>GALLERY</h2>
<div class="responsived">
<div class="gallery">
<a target="_blank" href="images/mou.jpg">
<img src="images/mou.jpg" alt="MoU" width="600" height="400">
</a>
<div class="desc">MoU(memorandum of understanding) is signed between Enjen Technologies and Perambalur KVK(krishi vigyan kendra).</div>
</div>
</div>
<!--
<div class="responsived">
<div class="gallery">
<a target="_blank" href="img_forest.jpg">
<img src="img_forest.jpg" alt="Forest" width="600" height="400">
</a>
<div class="desc">Add a description of the image here</div>
</div>
</div>
<div class="responsived">
<div class="gallery">
<a target="_blank" href="img_lights.jpg">
<img src="img_lights.jpg" alt="Northern Lights" width="600" height="400">
</a>
<div class="desc">Add a description of the image here</div>
</div>
</div>
<div class="responsived">
<div class="gallery">
<a target="_blank" href="img_mountains.jpg">
<img src="img_mountains.jpg" alt="Mountains" width="600" height="400">
</a>
<div class="desc">Add a description of the image here</div>
</div>
</div>
-->
<div class="clearfix"></div>
<div style="padding:6px;">
<p></p>
<p></p>
</div>
<div class="foot">
<a href="https://www.youtube.com/channel/UCcF3DHT8LNFruqP0Ihfx0sw"><i class="fa fa-youtube fa-2x"></i></a>
<p>Copyright © 2017.All Rights Reserved By Enjen</p>
</div>
</body>
</html>