-
Notifications
You must be signed in to change notification settings - Fork 0
/
TD-Bhumi webpage.html
187 lines (152 loc) · 4.1 KB
/
TD-Bhumi webpage.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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Nanum Gothic" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Anton" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Bebas Neue" rel="stylesheet">
<title>About Page</title>
<style>
body{
margin:0px;
}
#bom{
width: 100%;
height: 500px;
position: relative;
top: 0px;
left: 0px;
right: 0px;
box-shadow: 0 10px 20px rgba(0,0,0,0.30);
}
#td{
width: 160px;
height: 140px;
margin: 5.85px 0px;
position: absolute;
top: 20px;
left: 0px;
}
h3{
font-family: Bebas Neue;
text-align: center;
font-size: 32px;
font-weight: 250;
position: relative;
bottom: 80px;
opacity: 1;
font-style: italic;
}
#icon{
position: relative;
top:-55px;
background-color: rgba(45,45,45,0.1);
height: 500px;
bottom: 50px;
margin-bottom: 30px;
margin-right: 0px;
margin-left: 0px;
}
h1{
font-family: Anton;
text-align: center;
font-size: 50px;
font-weight: 150;
position: relative;
top:30px;
}
#pic1{
border-radius: 10px;
align-items: center;
box-shadow: 0 10px 20px rgba(0,0,0,0.30);
}
#pic2{
border-radius: 10px;
align-items:center;
box-shadow: 0 10px 20px rgba(0,0,0,0.40);
}
#gridlock{
display: grid;
grid-template-columns: 50% 50%;
text-align: center;
position: relative;
top: 60px;
margin-right: 0px;
margin-left: 0px;
}
h4{
font-family: Open Sans;
font-size: 23px;
font-weight: 200;
position: relative;
bottom: 10px;
}
h5{
font-family: Open Sans;
font-size: 23px;
font-weight: 200;
position: relative;
bottom: 15px;
}
h2{
position: relative;
/*top: 10px;
left: 10px;*/
font-size: 50px;
font-family: Anton;
font-weight: 150;
text-align: center;
top: 30px;
}
p{
position: relative;
top: 15px;
bottom: 10px;
text-align: center !important;
font-size: 20px;
font-family: Open Sans;
font-weight: 300;
opacity: 0.8;
}
#last{
position: relative;
bottom: 60px;
background-color: rgba(45,45,45,0.1);;
height: 400px;
margin-bottom: 30px;
margin-right: 0px;
margin-left: 0px;
}
#end{
display: grid;
grid-template-columns: 33.3% 33.3% 33.3%;
text-align: center;
}
</style>
</head>
<body vlink="green">
<img id="bom" src="https://www.bhumi.ngo/wp-content/uploads/2020/05/3-1-1024x341.png" width="100%">
<img id="td" src="https://www.think-digital.in/img/android-chrome-192x192.png">
<h3>Tech4Change is a voluntary initiative by <a href="https://www.bhumi.ngo/">Bhumi </a>to support NGOs with their technical requirements.</h3>
<div id="icon">
<h1> DEVELOPERS </h1>
<div id="gridlock">
<center>
<img id="pic1" src="https://media-exp1.licdn.com/dms/image/C5103AQF4b6bmDvot0Q/profile-displayphoto-shrink_200_200/0?e=1596067200&v=beta&t=fwvGmMKsTbcOvu9_41Cs02u9UjxRCj3fA9mrgxq-ErE"></center>
<center>
<img id="pic2" src="https://media-exp1.licdn.com/dms/image/C5103AQFT1yRyloOpzA/profile-displayphoto-shrink_200_200/0?e=1596067200&v=beta&t=lXG_XtFDQl_SKPFzZ-kyKuNbvhlkfiJAyC1YC7_Mtyo"></center>
<h4> Arulyan Asokan <br> CSE B.Tech </h4>
<h5> Aditya V Nadkarni <br> CSE B.Tech </h5>
</div>
</div>
<div id="last">
<h2>ABOUT US</h2>
<div id="end">
<center>
<img src="https://www.think-digital.in/img/android-chrome-192x192.png" height="192px" width="235px";></center>
<p> <b>ADDRESS</b><br><br>SRM Institute of Science & Technology,<br>Kattankulathur,<br>Tamil Nadu - 603-203</p>
<p><b>CONTACT US</b><br><br>8617362801<br>8428367716<br>[email protected]</p>
</div>
</div>
</body>
</html>