-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gym.html
140 lines (120 loc) Β· 3.77 KB
/
gym.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
<!DOCTYPE html>
<html>
<head>
<title>gym</title>
</head>
<style>
body{
background:
linear-gradient(
rgba(0, 0, 0, 0.5),
rgba(0, 0, 0, 0.5)
),
url(images/i.jpg);
background-size: cover;
opacity:none;
background-repeat: no-repeat;
background-size: cover;
background-color: black;
background-attachment: fixed;
}
.flip-card {
background-color: transparent;
width: 175px;
height: 196px;
perspective: 1000px;
}
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.6s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
width: 190px;
height: 210px;
border-style: dotted;
border-color:white;
}
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.flip-card-front {
background-color: #bbb;
color: black;
}
.flip-card-back {
background-color: red;
color: white;
transform: rotateY(180deg);
}
</style>
<h1 align="center" style="color: red; font-size: 50px;">GYM</h1>
<body>
<div class="row" style="position: absolute; left:60%; top: 30%;">
<div class="column">
<a href="abs(all).html"><div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/abs.png" alt="Abs" style="width:175px;height:196px;">
</div>
<div class="flip-card-back">
<h1 style="color: lightgreen; font-size: 28px;">ABS</h1>
<p style="text-transform: capitalize; font-size: 18px;">abs exercises are important for strong, firm abs, but the idea of spot reducing fat from the abs is a myth</p>
</div>
</div>
</div>
</div></a>
<div class="row" >
<div class="column"style="position: absolute; left:70%; top: 0%; margin-left: 70%;">
<a href="legs(all).html"> <div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/legs.jpg" alt="Avatar" style="width:175px;height:196px;">
</div>
<div class="flip-card-back">
<h1 style="color: lightgreen; font-size: 28px;">LEGS</h1>
<p style="text-transform: capitalize; font-size: 18px;">Leg day is approached with trepidation by many gym-goers and with good reason</p>
</div>
</div>
</div>
</div></a>
<br><br><br><br><br><br><br><br><br><br><br><br>
<div class="row" style="position: absolute; left:0%; top: 60%;">
<div class="column">
<a href="shoulder(all).html"> <div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/shoulder.png" alt="Avatar" style="width:174px;height:196px;">
</div>
<div class="flip-card-back">
<h1 style="color: lightgreen; font-size: 28px;">SHOULDER</h1>
<p style="text-transform: capitalize; font-size: 18px;">There's one thing every action star has in common, aside from a hefty paycheque, and that's a set of boulder shoulders.</p>
</div>
</div>
</div>
</div></a>
<div class="row" >
<div class="column"style="position: absolute; left:130%; top: 0%; margin-left: 10%;">
<a href="arms(all).html"> <div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/arms.png" alt="Avatar" style="width:175px;height:196px;">
</div>
<div class="flip-card-back">
<h1 style="color: lightgreen; font-size: 28px;">ARMS</h1>
<p style="text-transform: capitalize; font-size: 18px;">If you are looking to tone your arms you can go sleeveless with confidence,then our arm workout could be just what you need</p>
</div>
</div>
</div>
</div></a>
</body>
</html>