-
Notifications
You must be signed in to change notification settings - Fork 1
/
q.html
125 lines (112 loc) · 2.88 KB
/
q.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
<!DOCTYPE html>
<head>
<link href='https://fonts.googleapis.com/css?family=Rajdhani' rel='stylesheet'>
<style>
body{
background-color: g#DCDCDC;
}
.a{
font-family: Rajdhani;
color: grey;
font-size: 60px;
}
td{
color: white;
}
table{
border: 40px white;
border-radius: 20px;
font-size: 40px;
padding: 10px;
}
.b{
width:700px;
height: 500px;
}
.b img{
height: auto;
width: 100%;
}
.container {
position: relative;
width: 100%;
}
.overlay {
position: absolute;
bottom: 100%;
left: 0;
right: 0;
background-color: #84BDCB;
overflow: hidden;
width: 100%;
height:0;
transition: .5s ease;
}
.container:hover .overlay {
bottom: 0;
height: 100%;
}
.text {
color: white;
font-size: 70px;
font-family: Rajdhani;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
text-decoration: none;
}
.v{
text-decoration:none;
color:white;
}
</style>
</head>
<html>
<body>
<table align="center" border="" width="100%">
<tr><td>
<p class="a" align="center">Which Environment Makes You The Most Insecure?</p>
</td></tr>
</table>
<table align="center" border="2" width="100%">
<tr><td width="50%">
<div class="container">
<img src="https://static1.squarespace.com/static/516d36bbe4b06cb596ba96bf/52023429e4b0deac4015c928/52023429e4b0deac4015c929/1374864386733/BG_Hackathon-1173.jpg" class="b" height="100%" alt="Avatar" >
<div class="overlay">
<div class="text">Women Hackathon</div>
</div>
</div>
</td>
<td width="50%">
<div class="container">
<img src="https://www.newsobserver.com/news/business/1n4q4d/picture58505908/alternates/FREE_640/012816-CARYGROCERIES-CCS001" class="b" alt="Avatar">
<div class="overlay">
<div class="text">Grocery Store</div>
</div>
</div>
</td>
</tr>
<tr><td width="50%">
<div class="container">
<img src="https://assets.bwbx.io/images/i7xKejWnZ46A/v1/-1x-1.jpg" class="b" style="width=500px; height=100%" alt="Avatar">
<div class="overlay">
<div class="text"><a href="e.html" class="v">Your Tech Workspace</a></div>
</div>
</div>
</td>
<td width="50%">
<div class="container">
<img src="http://memphistalentdividend.com/wp-content/uploads/2018/05/exciting-awesome-artsy-living-room-interior-design-ideas-bedroom-designs-pinterest-bedrooms-tumblr-furniture-diy-wall-970x546.jpg" class="b" alt="Avatar">
<div class="overlay">
<div class="text">Living Room
</div>
</div>
</div>
</td></tr>
</table>
</body>
</html>