-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aerobic-exersise.html
125 lines (110 loc) Β· 2.36 KB
/
aerobic-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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>aerobic-exersise</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;">AEROBIC-EXERSISES</h2>
<br>
<br>
<div class="row">
<div class="column">
<div class="image">
<a href="jumprope.html"><img src="images/jump-rope.jpg" width="450px" height="260px" class="i"></a>
<div >JUMP-ROPE</div>
</div>
</div>
<div class="column">
<div class="image">
<a href="running.html"> <img src="images/running.jpeg"width="450px" height="260px" class="i"></a>
<div align="center">RUNNING</div>
</div>
</div>
<div class="column">
<div class="image">
<a href="swimming.html"><img src="images/swimming.jpg" width="450px" height="260px" class="i"></a>
<div align="center">SWIMMING</div>
</div>
</div>
</div>
<br>
<br>
<br>
<br>
<br>
<div class="row">
<div class="column">
<div class="image">
<a href="cycling.html"> <img src="images/cycling.jpg" width="450px" height="260px" class="i"></a>
<div align="center">CYCLING</div>
</div>
</div>
<div class="column">
<div class="image">
<a href="indoor-cycling.html"> <img src="images/indoorcycling.jpg" width="450px" height="260px" class="i"></a>
<div align="center">INDOOR-CYCLING</div>
</div>
</div>
<div class="column">
<div class="image">
<a href="skating.html"> <img src="images/skating.jpg" width="450px" height="260px" class="i"></a>
<div align="center">SKATING</div>
</div>
</div>
</body>
<br>
</html>