-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimg.html
161 lines (129 loc) · 3.76 KB
/
img.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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html>
<head>
<title>AGRIVATOR</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<style>
#para1 {
text-align: center;
margin-bottom: 4%;
color: green;
mardin-top: 10%;
}
div.gallery {
border: 5px solid #ccc;
margin-top: 0.5px;
}
div.gallery:hover {
border: 1px solid #777;
}
div.gallery img {
width: 100%;
height: 150px;
}
div.desc {
padding: 10px;
text-align: center;
background-color: green;
color: white;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 6px 6px;
float: left;
width: 24.99999%;
< !-- box-shadow: 5px 10px 9px #888888;
border: 6px solid white;
-->margin-left: 80px;
}
@media only screen and (max-width: 700px) {
.responsive {
width: 49.99999%;
margin: 6px 0;
}
}
@media only screen and (max-width: 500px) {
.responsive {
width: 100%;
}
}
.clearfix:after {
content: "";
display: table;
clear: both;
}
#c {
text-align: center;
color: #78b122;
margin-top: 20px;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand -->
<a class="navbar-brand" href="#">Logo</a>
<!-- Links -->
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Products</a>
</li>
<!-- Dropdown -->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
SERVICES
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="farmset.html">Farm set</a>
<a class="dropdown-item" href="farmplan.html">Farm plan</a>
<a class="dropdown-item" href="greenhut.html">Green hut</a>
</div>
</li>
</ul>
</nav>
<div class="container-1">
<h1 id="para1">SERVICES</h1>
<div class="all">
<div class="responsive">
<h4 id="c">FARM PLAN</h4>
<div class="gallery">
<a href="farmplan.html">
<img src="img/farmplan.png" alt="img3" width="600" height="800"></a>
</a>
<div class="desc">Amt: $500</div>
</div>
</div>
<div class="responsive">
<h4 id="c">FARM SETTING</h4>
<div class="gallery">
<a href="farmset.html"> <img src="img/farmset.png" alt="img3" width="600" height="800"> </a>
<div class="desc">Amt: $500</div>
</div>
</div>
<div class="responsive">
<h4 id="c">GREEN HUT</h4>
<div class="gallery">
<a href="greenhut.html"><img src="img/greenhut.png" alt="img3" width="600" height="800"></a>
<div class="desc">Amt: $500</div>
</div>
</div>
<div class="responsive">
<h4 id="c">FARM SETTING</h4>
<div class="gallery">
<a href="farmset.html"> <img src="img/farmset.png" alt="img3" width="600" height="800"> </a>
<div class="desc">Amt: $500</div>
</div>
</div>
</div>
<div class="clearfix"></div>
</div>
</body>
</html>