-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
160 lines (143 loc) · 3.76 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=\, initial-scale=1.0">
<title>Feel the Burn</title>
</head>
<link rel="stylesheet"href="css\style.css">
<style>
/*CSS Reset*/
body{
margin:0px;
padding:0px;
height:0cm;
background-color:black ;
}
.left{
display:inline-block;
/* border:10px solid red; */
position:absolute;
top:20px;
left: 44px;
}
.mid{
display: block;
width:33%;
margin: 20px auto;
/* border:10px solid green; */
}
.right{
position:absolute;
right: 44px;
top:20px;
display: inline-block;
/* border:12px solid yellow; */
}
.navbar{
display: inline-block;
}
.navbar li{
display: inline-block;
font-size: 25px;
}
.navbar li a{
color : green;
text-decoration: none;
padding:34px 23px;
}
.navbar li a.hover{
text-decoration: underline;
color: gray;
}
.left img{
width: 100px;
}
.left div{
text-align: center;
font-size: 15px;
}
.btn{
margin:0px 9px;
color:red;
padding:4px 14px;
border-radius: 10px;
border: 2px solid gray;
font-size:20px;
cursor: pointer;
}
.btn.hover{
background-color:rgb(31,30,30);
}
.container{
border:2px solid blue;
border-radius: 28px;
margin: 106px 80px;
padding: 75px;
width: 33%
}
.form-group input{
text-align: center;
display: block;
width: 508px;
padding: 75px;
border: 2px solid black;
margin: 11px auto;
font-size: 25px;
border-radius: 10px;
}
.container h1{
text-align: center;
}
.container button{
display: block;
width: 74%;
margin:20px auto;
}
</style>
<body-background="C:\Users\user1\Dextop\project gym\image\bg.jpg">
<header class="header">
<!-- left box for logo -->
<div class="left">
<img src="image/Vertical-Icons_Artboard-21-400x250.png">
<div>
Feel The Burn
</div>
</div>
<!-- mid box for navigation -->
<div class="mid">
<ul class="navbar">
<li><a href="#">Home</a></li>
<li><a href="#">About US</a></li>
<li><a href="#">Fitness calculator</a></li>
<li><a href="#">Feedback</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 the best Gym of Agra now
</h1>
<form action="backend.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>
<button class="btn">Summit</button>
</form>
</div>
</body>
</html>