-
Notifications
You must be signed in to change notification settings - Fork 192
/
Copy pathindex.html
193 lines (164 loc) · 5.26 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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<!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>Manish Fitness</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap" rel="stylesheet">
</head>
<link rel="stylesheet" href="css/style.css">
<style>
body {
color: white;
margin: 0px;
padding: 0px;
background: url('img/bg.jpg');
background-size: 100% 1080px;
background-repeat: no-repeat;
font-family: 'Baloo Bhai 2', cursive;
}
.left {
position: absolute;
display: inline-block;
/* border: 2px solid red; */
top: 20px;
left: 15px;
}
.mid {
/* border: 2px solid green; */
color: white;
display: block;
width: 55%;
margin: 20px auto;
/*top - x*/
}
.navbar li {
display: inline-block;
}
.navbar li a {
color: white;
margin: 25px;
/* text-decoration: underline; */
}
.navbar li a:hover {
text-decoration: underline;
color: rgb(173, 240, 16);
}
.mid ul {
color: white;
text-decoration: white;
}
.right {
position: absolute;
/* border: 2px solid yellow; */
display: inline-block;
right: 35px;
top: 20px;
}
.left img {
width: 100px;
}
.text {
text-decoration: underline;
color: yellow;
align-items: center;
position: fixed;
}
.right button {
padding: 5px;
margin: 13px;
cursor: pointer;
font-family: 'Baloo Bhai 2', cursive;
}
button:hover {
color: yellow;
background-color: grey;
}
.Container {
border: 2px solid greenyellow;
border-radius: 5px;
margin: 20px;
margin: 125px 40px;
padding: 2px 3px;
width: 33%;
font-family: 'Baloo Bhai 2', cursive;
color: rgba(43, 250, 16, 0.959);
background-color: transparent;
align-items: center;
}
.form input {
border: 3px solid green;
border-radius: 5px;
margin: 3px auto;
padding: 13px;
font-family: 'Baloo Bhai 2', cursive;
width: 60%;
display: block;
text-align: center;
background-color: khaki;
}
.Container h1 {
text-align: center;
}
.Container button {
display: block;
width: 40%;
margin: auto;
border-radius: 5px;
background-color: rgb(12, 12, 12);
color: honeydew;
cursor: pointer;
}
</style>
<body>
<header class="header">
<div class="left">
<img src="img/Grey Black Studio Shield Fitness Logo.jpg" alt="" id="Logo">
<div class="text">Manish's Fitness</div>
</div>
<div class="mid">
<ul class="navbar">
<!-- <li class="nav-item">
<a class="nav-link active" aria-current="page" href="about us.html">ABOUT US</a>
</li> -->
<li><a href="#">Home</a></li>
<li><a href="#">Calorie Calculator</a></li>
<li><a class="nav-link active" aria-current="page" href="home.html">HomeHome</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
</div>
<!-- <li class="nav-item">
<a class="nav-link active" aria-current="page" href="about us.html">ABOUT US</a>
</li> -->
<!-- <div class="container">
<h2>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quos, molestiae blanditiis. Sint ipsam, a ipsa id, saepe maiores enim explicabo excepturi aut ut nemo autem earum. Necessitatibus soluta doloribus quaerat maiores molestiae voluptate similique.</h2>
</div> -->
<div class="right">
<button>Contact Us</button>
<button>Email Us</button>
</div>
<div class="Container">
<h1>Join the prestigious branch of Manish's Fitness</h1>
<form action="noaction.php">
<div class="form">
<input type="text" name="" placeholder="Enter your name">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your Age">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your Gender">
</div>
<div class="form">
<input type="text" name="" placeholder="Enter your Locality">
</div>
<button style="align-items: center;">Submit now</button>
</form>
</div>
</header>
</body>
</html>