-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
104 lines (89 loc) · 2.1 KB
/
about.html
File metadata and controls
104 lines (89 loc) · 2.1 KB
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Staatliches&display=swap" rel="stylesheet">
<style>
body{
background-image: url("https://thumbs.gfycat.com/FreeBriskCicada-small.gif");
}
div.gallery {
border: 1px solid #ccc;
}
div.gallery:hover {
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
div.gallery img {
width: 100%;
height:auto;
}
div.desc {
padding: 15px;
text-align: center;
font-family: algerian;
color: white;
background-color: red;
}
* {
box-sizing: border-box;
}
.responsive {
padding: 0 60px;
margin: auto;
float: left;
width: 30%;
}
@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;
}
h1,h2{
/*font-family: 'Anton', sans-serif;*/
letter-spacing: 3px;
font-family: 'Staatliches', cursive;
color: white;
text-align: center;
}
</style>
</head>
<body>
<h1>Team Equalizer</h1>
<h2>This is us! We worked remotely from 3 different states, we're each others strengths!<h2>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="https://github.com/EqualizerShubham">
<img src="shubh.jpeg" alt="Shubham" width="600" height="400">
</a>
<div class="desc">Shubham Pandey</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="https://github.com/Samarth484">
<img src="sam2.jpeg" alt="Samarth" width="600" height="400">
</a>
<div class="desc">Samarth Srivastava</div>
</div>
</div>
<div class="responsive">
<div class="gallery">
<a target="_blank" href="https://github.com/priyalbhatewara123">
<img src="priyal.jpeg" alt="Priyal" width="600" height="400">
</a>
<div class="desc">Priyal Bhatewara</div>
</div>
</div>
</body>
</html>