-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (40 loc) · 1.31 KB
/
index.html
File metadata and controls
40 lines (40 loc) · 1.31 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>GYM</title>
<link rel="stylesheet" href="main.css"><link href="https://fonts.googleapis.com/css?family=Baloo+Bhai&display=swap" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="left">
<img src="logo.jpg">
<div>Jonny Fitness</div>
</div>
<div class="mid">
<ul class="navbar">
<li><a href="#" class="active">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>
<div class="right">
<button class="btn">Call Us</button>
<button class="btn">Email Us</button>
</div>
</header>
<div class="container">
<h1>Join The Faislabad </h1>
<form action="gym_form.php" method="post">
<div class="form-group">
<input type="text" name="name" id="1" placeholder="Enter Your Name">
<input type="text" name="age" id="2" placeholder="Enter Your Age">
<input type="text" name="gender" id="3" placeholder="Enter Your Gender">
<input type="email" name="email" id="4" placeholder="Enter Your Email">
<input type="submit" value="Login" id="submit-btn" class="btn" placeholder="Enter Your Name">
</div>
</form>
</div>
</body>
</html>