-
Notifications
You must be signed in to change notification settings - Fork 0
/
ishufitnesss.html
146 lines (144 loc) · 3.13 KB
/
ishufitnesss.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width-device-width, intial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie-edge">
</head>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<style>
/* css reset */
body{
font-family: 'Baloo Bhai 2', cursive;
margin:0px;
pading:0px;
background:url(https://images.pexels.com/photos/841130/pexels-photo-841130.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940);
}
.left{
position:absolute;
left:20px;
top:25px;
display:inline-block;
}
.left img{
width:100px;
height:80px;
}
.logo{
background:white;
font-family:Harlow solid;
text-align:center;
}
.mid{
display:block;
width:50%;
margin:25px auto;
}
.right{
position:absolute;
right:20px;
top:25px;
display:inline-block;
}
.navbar{
display:inline-block;
}
.navbar li{
display:inline-block;
}
.navbar li a{
color:white;
text-decoration:none;
padding:15px 10px;
font-size:20px;
font-family:verdana;
}
.navbar li a:hover, .navbar li a.active{
text-decoration:underline;
color:grey;
}
.btn{
margin:0px 9px;
background-color:black;
color:white;
border: 2px solid grey;
border-radius:10px;
cursor:pointer;
}
.btn:hover{
background-color:rgb(19,18,18);
}
.container{
margin: 106px 80px;
padding: 75px;
width:33%;
border-radius:28px;
}
.container h1{
color:white;
font-family:verdana;
text-align:center;
}
.form-group input{
text-align:center;
display:block;
width:450px;
color:solid-grey;
padding:2px;
margin:11px auto;
border-radius:8px;
font-size:20px;
font-family:verdana;
}
.container button{
margin:20px auto;
display:block;
width:75px;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<body>
<header class="header">
<div class="left">
<img src="https://image.shutterstock.com/image-illustration/orange-dumbbell-logo-on-black-600w-261351398.jpg">
<div class="logo">Ishu 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 now</button><button class="btn">Email Us now</button>
</div>
</header>
<div class="container">
<h1>Join the best gym of Muzaffarpur now!</h1>
<form action="no action.php">
<div class="form-group">
<input type="text" name="" Placeholder="Enter your name">
</div>
<div class="form-group">
<input type="text" name="" Placeholder="Enter your age">
</div>
<div class="form-group">
<input type="text" name="" Placeholder="Enter your gender">
</div>
<div class="form-group">
<input type="text" name="" Placeholder="Enter your locality">
</div>
<div class="form-group">
<input type="text" name="" Placeholder="Enter your phone number">
</div>
<div>
<button class="btn">Submit</button>
</div>
</form>
</div>
</body>
</html>