-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (59 loc) · 2.05 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
<!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>Fit City</title>
<link rel="stylesheet" href="css/style.css">
<link rel="shortcut icon" href="/images/logo.jpg" type="image/x-icon" id="icon">
</head>
<body>
<header class="header">
<!-- Left box for logo -->
<div class="left">
<img src="images/logo-removebg-preview.png" alt="logo">
<div>Fit City</div>
</div>
<!-- Mid box for navbar -->
<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>
<!-- Right box for buttons -->
<div class="right">
<button class="btn" id="btn">Call us</button><button class="btn" id="btn">Email us</button>
</div>
</header>
<div class="container">
<div>
<h1>Join the best Gym of the City</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 weight">
</div>
<div class="formGroup">
<input type="text" name="" placeholder="Enter your phone number">
</div>
<div class="formGroup">
<input type="text" name="" placeholder="Enter your Email">
</div>
<button class="btn" id="btn">Submit</button>
</form>
</div>
</div>
</body>
</html>