-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAboutus.html
193 lines (190 loc) · 5.65 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
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!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>
<style>
html{
font-size: small;
}
body {
/* Set a background color that will be displayed
while the background image is loading */
background-image: url("https://images.unsplash.com/photo-1587826080692-f439cd0b70da?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=500&q=60");
background-color: #464646;
}
*{
color: whitesmoke;
font-size: small;
}
.container{
background-color: black;
border: solid 2px purple;
display: flex;
flex-wrap: wrap;
width: 95%;
height: auto;
margin: auto;
padding-top: 1rem;
padding-bottom: 1rem;
border-radius: 25px;
justify-content: center;
justify-content: space-around;
align-items: center;
overflow: hidden;
position: sticky;
position: -webkit-sticky;
top: 0;
}
.box{
/* border: solid 2px whitesmoke; */
margin: auto;
text-align: center;
}
a{
text-decoration: none;
}
a:hover{
color: rgb(62, 236, 9);
zoom: 110%;
}
span:hover{
color: rgb(62, 236, 9);
}
.imgholder{
display: flex;
flex-direction: column;
justify-content: center;
/* border: solid 4px red; */
}
.rowobject{
display: flex;
flex-direction: row;
justify-content: center;
/* border: solid 4px red; */
}
.rowobject:hover{
zoom: 95%;
}
.object{
display: flex;
flex-direction: column;
justify-content: space-around;
margin: auto;
width: 22vh;
height: auto;
border: solid 4px rgb(78, 3, 47);
border-radius: 5vh;
background-color: rgb(78, 3, 47);
margin-bottom: 2vh;
}
.object:hover{
background-color: rgb(23, 180, 17);
zoom: 110%;
}
.facname{
margin: 0.5vh 1vh;
width: 20vh;
height: auto;
font-size: large;
text-align: center;
border-radius: 12vh;
}
.fac{
margin: 0.5vh 1vh;
width: 20vh;
height: auto;
border-radius: 12vh;
}
h2{
text-align: center;
font-size: xx-large;
border-radius: 12vh;
}
.xen{
/* float: right; */
position: fixed;
bottom: 0;
right: 0;
zoom: 1;
border: solid 2px whitesmoke;
border-radius: 10%;
background-color: blueviolet;
padding: 1%;
}
</style>
</head>
<body>
<div class="container">
<div id="box1" class="box"><a href="/flex.html">HOME</a>
</div>
<div id="box2" class="box"><a href="/contact.html">Contact Us</a>
</div>
<div id="box3" class="box"><a href="http://bit.ly/2YxWsLv" target="blank">Apply Online</a>
</div>
<div id="box4" class="box"><a href="/Aboutus.html">About Us</a>
</div>
<div id="box4" class="box">
<a href="/contactM.html">मराठीत बघा
</a>
</div>
</div>
<div class = imgholder>
<div class="rowobject">
<div class="object">
<h2>
शिक्षक वृंद
</h2>
</div>
</div>
<div class="rowobject">
<div class="object">
<div class="facimg">
<img src="/satishMarathe.jpg" class="fac">
</div>
<div class="facname">
सतीश मराठे
</div>
<div class="facname">
मुख्याध्यपक
</div>
</div>
</div>
<div class="rowobject">
<div class="object">
<div class="facimg">
<img src="/shashi1.jpg" class="fac">
</div>
<div class="facname">
शशिकांत बच्छाव
</div>
<div class="facname">
उपशिक्षक
</div>
</div>
<div class="object">
<div class="facimg">
<img src="/sabale1.jpg" class="fac">
</div>
<div class="facname">
जगदीश साबळे
</div>
<div class="facname">
उपशिक्षक
</div>
</div>
</div>
</div>
<a href="#">
<div class="xen">
<div>
Developer
</div>
<div>
XEN LABS
</div>
</div>
</a>
</body>
</html>