-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (52 loc) · 1.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gym membership</title>
</head>
<link rel="stylesheet" href="css/style.css">
<link href="https://fonts.googleapis.com/css2?family=PT+Serif&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<body>
<header class="header">
<!-- left box for logo -->
<div class="left">
<img src="img/logo.jpg" alt="">
<div>Priona Fitness Club</div>
</div>
<!-- middle 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 boox 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 IN BHUBANESWAR</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 gender">
</div>
<div class="formgroup">
<input type="text" name=""placeholder="Enter your email">
</div>
<div class="formgroup">
<input type="text" name=""placeholder="Enter your password">
</div>
<button type="submit">Submit now</button>
</form>
</div>
</body>
</html>