-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
52 lines (49 loc) · 1.36 KB
/
join.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="" content="">
<link rel="stylesheet" href="css/join.css">
<title>join my Gym</title>
<style>
body{
background-image:url(img/bg.jpeg);
background-size: 100vw 100vh;
background-repeat: no-repeat;
color:#fff;
}
body::before{
content: "";
width: 100%;
height: 100vh;
position: absolute;
background: rgba(0,0,0,.5);
z-index: -1;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<h1>Sada fitness</h1>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
<li><a class="active"href="join.html">Join</a></li>
</ul>
</nav>
</header>
<div class="container">
<form action="index.php" method="post" accept-charset="utf-8">
<h3>Join the best gym now</h3>
<input type="text" name="" id="" placeholder="Enter first Name" />
<input type="text" name="" id="" placeholder="Enter Last Name" />
<input type="text" name="" id="" placeholder="Enter Age" />
<input type="text" name="" id="" placeholder="Gender" />
<input type="text" name="" id="" placeholder="Enter Phone No." /><br>
<input type="submit" name="" id="btn" value="Submit" />
</form>
</div>
</body>
</html>