-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
142 lines (131 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ani's Fitness</title>
</head>
<link rel="stylesheet" href="css/style.css">
<style>
body{
color: white;
margin: 0px;
padding: 0px;
background: url('img/image4.webp');
}
.left{
display: inline-block;
position: absolute;
left: 38px;
top: 20px;
}
.left img{
width: 63px;
}
.left div{
font-size: 10px;
text-align: center;
}
.mid{
border-radius: 14px;
display: block;
width: 35%;
margin: 20px auto;
border: 2px solid white;
}
.right{
position: absolute;
right: 38px;
top: 20px;
display: inline-block;
}
.btn{
color:black ;
margin: 0px 9px;
padding: 5px 4px;
}
.navbar{
display: inline-block;
}
.navbar li{
font-size: 15px;
display: inline-block;
}
.navbar li a{
color: white;
text-decoration: none;
padding: 17px 12px;
}
.navbar li a:hover, .navbar li a.active{
text-decoration: underline;
color: grey;
}
.container{
border: 2px solid white;
margin: 100px 50px;
padding: 60px;
width: 30%;
border-radius: 28px;
font-size: 12px;
}
.formgroup input{
text-align: center;
display: block;
width: 508 px;
padding: 1px;
border: 2px solid black;
font-size: 20px;
margin: 11px auto;
}
.container h1{
text-align: center;
}
.container button
{
display: block;
width: 25%;
margin: auto;
}
</style>
<body>
<header class="header">
<div class="left">
<img src="img/image2.webp" alt="">
<div>
Ani Fitness
</div>
</div>
<div class="mid">
<navbar class="navbar">
<ul>
<li> <a href="#">Home</a></li>
<li> <a href="#">About</a></li>
<li> <a href="#">Fitness Calculator</a></li>
<li> <a href="#">Contact Us</a></li>
</ul>
</navbar>
</div>
<div class="right">
<button class="btn">Call us</button><button class="btn">Email now</button>
</div>
</header>
<div class="container">
<h1>Join the best GYM of Gwalior now</h1>
<form action="noaction.php">
<div class="formgroup">
<input type="text" name="" placeholder="Enter your name">
</div>
<div class="formgroup">
<input type="text" name="" placeholder="Enter your age">
</div>
<div class="formgroup">
<input type="text" name="" placeholder="Enter your gender">
</div>
<div class="formgroup">
<input type="text" name="" placeholder="Enter your locality">
</div>
<button class="btn">Submit now</button>
</form>
</div>
</body>
</html>