forked from AtharvK07/Gym-Management-System
-
Notifications
You must be signed in to change notification settings - Fork 0
/
services.html
168 lines (168 loc) · 3.88 KB
/
services.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
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
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<title>Our Services</title>
<script>
document.addEventListener('contextmenu',event => event.preventDefault());
</script>
<style>
body{
background-color: black;
}
.servicebox{
padding:135px 25px 15px;
background: url('img/service.jpg');
display: inline-block;
text-align: center;
border-radius: 20x;
overflow: hidden;
position: relative;
}
<div class="textarea-field">
<textarea name="" id="" cols="30" rows="10" placeholder="Your Message" required></textarea>
<span class="focus"></span>
</div>
.servicebox .service-icon{
display: inline-block;
width: 200px;
height: 200px;
line-height: 300px;
border-radius: 50%;
box-shadow: 0 0 5px #000 inset;
background: linear-gradient(to
top,#8633cb,#884fb7 50%,#6d6e72 50%);
font-size: 50px;
color: white;
position: absolute;
top: -80px;
left: 50%;
transform: scale(1) translateX(-50%);
transition: all 0.9s ease 0s;
}
.servicebox:hover .service_icon{
font-sizw:65px;
}
.servicebox .title{
font-size: 18px;
font-weight: 700;
color: #ff9c9c;
letter-spacing: 1px;
text-transform: uppercase;
margin: 0 0 10px o;
}
.servicebox:hover .title{
color:#8939cb;
}
.servicebox .description{
border:#aca6c0;
border-width:20px;
border-style:outset;
padding: 0px 226px;
font-size: 20px;
color: #ffffff;
line-height: 36px;
letter-spacing: 4px;
margin-bottom: 4px;
}
.servicebox .read-more{
display: inline-block;
padding: 5px 15px;
font-size: 14px;
font-size: italic;
color: white;
background: linear-gradient(to
top,#8633cb,#884fb7);
border-radius: 10px 10px 0 0;
transform: translateY(50px);
transition: all 0.3s ease 0s;
}
.servicebox .read-more:hover{
color: white;
box-shadow: 0 0 5px #000;
}
.servicebox:hover .read-more{
transform:translateY(0);
}
.servicebox.yellow.serviceicon{
background: linear-gradient(totop,#f1b02b,#fddb18 50%,#6d6e7250%);
}
.servicebox.yellow:hover .title{
color: #f1b02b;
}
.servicebox.yellow.read-more{
background:linear-gradient(totop,#f1b02b,#fddb18);
}
.servicebox.green.service-icon{
background: linear-gradient(totop,#50c338,#9dea28 50%,#6d6e7250%);
}
.servicebox.green:hover .title{
color: #50c338;
}
.servicebox.green.read-more{
background: linear-gradient(totop.#50c338,#9dea28);
}
</style>
</head>
<body>
<br>
<div class="demo">
<div class="container">
<div class="row">
<div class="col-md-3">
<div class="servicebox green">
<div class="service-icon">
</div>
<h3 class="title">HEALTH CARE</h3>
<h1 class="description"><strong>fitness information
a key of consideration for maintaining
health. Along with healthy eating, its one
of the most important things a person can
do keep a healthy weight.</strong></h1>
<a href="page1.html" class="readmore">Read more</a>
<hr>
</div>
</div>
<div class="col-md-4">
<div class="servicebox">
<div class="service-icon">
</div>
<h3 class="title">SPECIAL TRAINER</h3>
<p class="description">Special Trainer avilable in this gym.
For making fastest fitness or body
Special trainer is important. Trainer
can train you about all workouts which is
given in chart.</p>
<a href=" page2.html " class="readmore">Read more</a>
<hr>
</div>
</div>
<div class="col-md-3">
<div class="servicebox yellow">
<div class="service-icon">
</div>
<h3 class="title">STEAM BATH</h3>
<p class="description">A steambath is a steam-filled room for the
purpose of relaxation and cleansing. its
along history, going back to greek and
roman times. It is so easy.</p>
<a href=" page3.html " class="readmore">Read more</a>
<hr>
</div>
</div>
<div class="col-md-3">
<div class="servicebox pink">
<div class="service-icon">
</div>
<h3 class="title">ZUMBA DANCE</h3>
<p class="description">Zumba is a exercise fitness program
created by colombian dancer in 1990s. A
zumba class
combines fast and slow rythms of tune.</p>
<a href=" page4.html " class="readmore">Read more</a>
<hr>
</div>
</div>
</div>
</div>
</div>
</body></html>