-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebindex.html
executable file
·167 lines (155 loc) · 4.76 KB
/
webindex.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FITNESS FOREEVER</title>
</head>
<link rel="stylesheet" href="GYM style 1 HARRY/webindex.css">
<style>
body{
margin-left: 0px;
margin-top: 0px;
background: url('GYM image 1 harry/gymmer.jpg');
color: white;
}
.left{
display: inline-block;
position: absolute;
left: 50px;
top: 20px;
/* font-size: 15px; */
font-family: cursive;
width: 200px;
cursor: pointer;
border: 4px solid red;
text-align: center;
line-height: 30px;
font-size: 18px;
}
.left:hover{
color: yellowgreen;
}
.mid{
display: block;
width: 25%;
margin: 20px 800px;
border: 4px solid red;
font-family: cursive;
}
.right{
position: absolute;
right: 34px;
top: 20px;
display: inline-block;
border: 4px solid red;
font-family: cursive;
font-size: 20px;
}
.navbar li{
display: inline-block;
/* padding: 3px;
margin: 2px; */
font-size: 15px;
}
.navbar li a{
color: white;
text-decoration: none;
padding: 3px 5px;
margin: 2px;
}
.navbar li a:hover{
text-decoration: underline;
color: greenyellow;
}
.btn{
margin: 0px 9px;
/* color: white; */
/* background-color: black; */
padding: 4px 14px;
border: 3px solid gray;
border-radius: 10px;
font-size: 15px;
cursor: pointer;
font-family: cursive;
}
.btn:hover{
background-color: greenyellow;
}
.container{
border: 4px solid white;
margin: 239px 943px;;
padding: 65px;
width: 33%;
border-radius: 28px;
font-size: 12px;
}
.form-group input{
text-align: center;
display: block;
width: 500px;
padding: 1px;
border: 2px solid red;
margin: 11px auto;
font-size: 17px;
border-radius: 8px;
font-family: cursive;
}
.container h1{
text-align: center;
}
.container button{
display: block;
width: 200px;
margin: 20px auto;
}
</style>
<body>
<header class="header">
<!-- Left box for logo -->
<div class="left">
<img src="GYM image 1 harry/logo.png" width="150px">
FITNESS FOREVER
</div>
<!-- Mid box for navbar -->
<div class="mid">
<ul class="navbar">
<li> <a href="#"> <b>Home</b> </a></li>
<li> <a href="#"> <b>About Us</b> </a></li>
<li> <a href="#"> <b>Fitness Calculator</b> </a></li>
<li> <a href="#"> <b>Contact Us</b> </a></li>
</ul>
</div>
<!-- Right box for buttons -->
<div class="right">
<button class="btn">Call US Now</button>
<button class="btn">Email Us</button>
</div>
</header>
<div class="container">
<h1>Join FITNESS FOREEVER To Have The Better You</h1>
<form action="noaction.php">
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Name">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Age">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Gender">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Locality">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Phone Number">
</div>
<div class="form-group">
<input type="text" name="" placeholder="Enter Your Email Id">
</div>
</form>
<button class="btn">Submit Now</button>
</div>
</body>
</html>