-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
anaerobic-exersise.html
111 lines (93 loc) Β· 2.1 KB
/
anaerobic-exersise.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anaerobic-Exercise</title>
</head>
<style>
* {
box-sizing: border-box;
background-color: black;
color: white;
}
.column {
float: left;
width: 33.33%;
padding: 5px;
}
/* Clearfix (clear floats) */
.row::after {
content: "";
clear: both;
display: table;
}
.i:hover{
width: 430px;
height: 250px;
}
.image{
position: relative;
width: 200px;
height: 200px;
float: left;
margin-right: 10px;
}
/* Child Text Container */
.image div{
position: absolute;
bottom: 0;
right: 0;
background: white;
color: blue;
margin-bottom: 5px;
font-family: sans-serif;
opacity: 0;
visibility: hidden;
-webkit-transition: visibility 0s, opacity 0.5s linear;
transition: visibility 0s, opacity 0.5s linear;
}
/* Hover on Parent Container */
.image:hover{
cursor: pointer;
}
.image:hover div{
width: 150px;
padding: 8px 15px;
visibility: visible;
opacity: 0.9;
}
</style>
<body>
<h2 align="center" style="font-size: 40px;">ANAEROBIC-EXERCISE</h2>
<br><br><br><br>
<div class="row" style="margin-left: 10%;">
<div class="column">
<div class="image">
<a href="weightlifting.html"><img src="images/weightlifting.jpg" width="450px" height="260px" class="i"></a>
<div align="center">WEIGHT-LIFTING</div>
</div>
</div>
<div class="column" style="margin-left: 10%;">
<div class="image">
<a href="pushups.html"> <img src="images/c.jpg"width="450px" height="260px" class="i"></a>
<div align="center">PUSHUPS</div>
</div>
</div>
</div>
<br><br><br><br>
<div class="row" style="margin-left: 10%;">
<div class="column">
<div class="image">
<a href="isometrices.html"><img src="images/isometrices.jpeg" width="450px" height="260px" class="i"></a>
<div align="center">ISOMETRICES</div>
</div>
</div>
<div class="column" style="margin-left: 10%;">
<div class="image">
<a href="rowing.html"> <img src="images/rowing.png" width="450px" height="260px" class="i"></a>
<div align="center">ROWING</div>
</div>
</div>
</div>
</body>
</html>