-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathgymweb
More file actions
204 lines (191 loc) · 5.33 KB
/
gymweb
File metadata and controls
204 lines (191 loc) · 5.33 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
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>fitness gym</title>
</head>
<style>
body{
background-image: url(life.jpg);
background-size: cover;
}
.left{
display: inline-block;
position:absolute;
left: 35px;
top: 20px;
}
.mid{
display: block;
margin:20px auto;
width:55%;
}
.right{
display: inline-block;
position:absolute;
right: 35px;
top: 20px;
}
.navbar{
border-color: wheat;
background-color: black;
border-radius: 13px;
}
.navbar li{
float:left;
list-style: none;
margin:13px;
}
.navbar ul{
overflow: auto;
}
.navbar li a{
padding: 8px;
color: white;
text-decoration: none;
}
.navbar:hover, .navbar li a.active{
color:blue;
text-decoration: underline;
}
.left img{
width: 100px;
text-align: center;
height:50px;
}
.btan{
margin:0px 9px;
padding:9px 18px;
background-color: black;
color: blanchedalmond;
border: 2px solid white;
cursor: pointer;
}
.btan:hover{
background-color: blue;
}
.container{
border: 2px solid white;
margin:100px 80px;
padding: 50px;
width: 33%;
border-radius: 28px;
}
.form input{
text-align:center ;
display: block;
padding: 5px;
width:400px;
margin: 5px auto;
font-size: 20px;
border-radius: 10px;
cursor: pointer;
}
.container h1{
color: cornsilk;
text-align:center;
}
.container button{
display: block;
margin: 10px auto;
width: 94%;
border-radius: 10px;
font-size: 20px;
background-color: black;
color: cornsilk;
cursor: pointer;
border-color: white;
}
.left div{
text-align:center;
font-weight: bolder;
color: ivory;
}
.element{
border-radius: 20px;
border: 4px solid white;
background-color: black;
margin: 0px 5px;
padding: 22px;
width:32%;
box-sizing: border-box;
display:inline-block;
}
.let{
color: cornsilk;
font-size: 30px;
text-align: center;
}
.beg{
color:cornsilk;
font-size: 22px ;
text-align: center;
}
</style>
<div>
<header class="header">
<div class="left">
<img src="24737.jpg" alt="">
<div>rishu gym</div>
</div>
<div class="mid">
<nav class="navbar">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">Memberships</a></li>
<li><a href="#">Trainers</a></li>
<li><a href="#">Service</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</div>
<div class="right">
<button class="btan">Contact Us</button>
<button class="btan">E-mail Us</button>
</div>
</header>
<div class="container">
<h1>Welcome For Your Own Gym</h1>
<form action="noaction.php">
<div class="form">
<input type="text" name="" placeholder="Enter your Name">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your Age">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your Gender">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your State">
</div>
<button class="btm">Submit</button>
</form>
</div>
<div class="box">
<div class="element">
<h2 class="let">BODY BUILDING</h2>
<p class="beg">
Building muscles require a positive energy balance,which means that you must takein more calories than you burn.You need roughly 2800 calories to build a pound of muscle,largly to support protein turnover,which can be elevated with training.
</p>
</div>
<div class="element">
<h2 class="let">YOGA CLASSES</h2>
<p class="beg">
A Yoga studio is a room, building or other place where yoga classes and instruction takes place.It can be as simple room or as complex as a structure with multiple classrooms with built-in props and heated humidified rooms for Hot yoga.Yoga Instructor in Hollywood,California.
</p>
</div>
<div class="element">
<h2 class="let">AEROBICS CLASSIES</h2>
<p class="beg">
Aerobic Dance exercise is any physical activity that makes you sweet cause you to brethe harder and gets your heart beating faster than at rest. Aerobic dance strenghtness your heart and lungs and trains your cardiovacular system to manage and deliver oxygen more body.
</p>
</div>
</div>
</div>
</body>
</html>