-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
164 lines (156 loc) · 4.32 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
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fitness is our Goal</title>
</head>
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Crimson+Text:wght@600&family=Dancing+Script:wght@600&family=Montserrat:wght@500&family=Open+Sans:wght@500&family=Quicksand:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<style>
body{
/* font-family: 'Montserrat', 'sans-serif' ; */
font-family: "Merriweather", serif;
color: white;
margin: 0px;
padding: 12px 15px;
background: url('img/gym4.jpg');
background-repeat: no-repeat;
background-size: cover;
}
.left{
line-height: 1;
font-size: 80%;
display :inline-block;
/* border: 2px solid red; */
position: absolute;
left: 49px;
top: 20px;
}
.left img{
width: 90px;
height: 52px;
filter: invert(100%);
}
.left div{
text-align: center;
}
.mid{
display: block;
width: 37%;
margin: 20px auto;
}
.right{
position: absolute;
right: 34px;
top: 20px;
display: inline-block;
border: 2px solid hsl(0, 0%, 3%);
}
.navbar{
display: inline-block;
}
.navbar li{
display: inline-block;
font-size: 14px;
}
.navbar li a{
color:white;
text-decoration: none;
padding: 22px 23px;
}
.navbar li a:hover, .navbar li a.active{
/* color:rgba(59, 127, 127, 0.937); */
color:rgba(226, 142, 15, 0.937);
text-decoration: underline;
padding: 22px 16px;
}
.btn{
font-family: 'Montserrat', 'sans-serif' ;
margin: 0px 9px;
background-color: black;
color: white;
padding: 4px 14px;
border: 2px solid gray;
border-radius: 10px;
font: size 20px;
cursor: pointer;
}
.btn:hover{
background-color:rgba(77, 81, 81, 0.937)
}
.container{
margin: 32px 576px;
padding: 20px 48px;
width:38%;
border-radius: 12px;
}
.container h1{
text-align: center;
}
.container button{
display: block;
width: 54%;
margin: 2% auto;
}
.form-group input{
text-align: center;
display: block;
width: 287px;
padding: 6px;
border: 2px solid black;
margin: 3px auto;
font-size: 19px;
border-radius: 1%;
}
</style>
<body>
<header class="header">
<!-- left box for logo -->
<div class ="left">
<img src="img/gymlogo2.jpeg" alt="">
<div>Ankita Fitness </div>
</div>
<!-- right box for nav bar -->
<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="#">Contact Us</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 Kolkata, today</h1>
<form>
<div class="form-group">
<input type="text" id="name" name="name" placeholder="Enter your name">
</div>
<div class="form-group">
<input type="text" id="age" name="age" placeholder="Enter your age">
</div>
<div class="form-group">
<input type="text" id="gender" name="gender" placeholder="Enter your gender">
</div>
<div class="form-group">
<input type="text" id="locality" name="locality" placeholder="Enter your locality">
</div>
<div class="form-group">
<input type="text" id="phno" name="phno" placeholder="Enter your phone number">
</div>
<div class="form-group">
<input type="email" id="email" name="email" placeholder="Enter your Email id">
</div>
<button id="btn" class="btn">Submit</button>
</form>
</div>
<script src="index.js">
</script>
</body>
</html>