-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
165 lines (143 loc) · 4.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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhai+2&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<style>
body {
color: white;
margin: 0px;
padding: 0px;
background: url('img/p1.jpg');
font-family: 'Baloo Bhai 2', cursive;
}
.left {
display: inline-block;
position: absolute;
left: 26px;
top: 18px;
/* border: solid 2px red; */
}
.left div {
text-align: center;
}
.left img {
width: 95px;
filter: invert();
}
.center {
display: block;
width: 40%;
margin: 12px auto;
/* border: solid 2px red; */
}
.right {
display: inline-block;
position: absolute;
right: 9px;
top: 35px;
/* border: solid 2px red; */
}
.navbar {
display: inline-block;
}
.navbar li {
display: inline-block;
}
.navbar li a {
display: inline-block;
color: white;
text-decoration: none;
padding: 12px 32px;
font-size: 17px;
}
.navbar li a:hover,
.navbar li a.active {
color: grey;
text-decoration: underline;
}
.btn {
margin: 0px 9px;
padding: 4px 15px;
color: white;
background-color: black;
/* border-radius: 12px; */
font-size: 15px;
cursor: pointer;
font-family: 'Baloo Bhai 2', cursive;
}
.right .btn:hover {
color: rgb(111, 111, 223);
}
.container {
/* border: 2px solid red; */
margin: 59px 50px;
padding: 73px 26px;
width: 42%;
border-radius: 23px;
}
.form-group input {
text-align: center;
display: block;
width: 70%;
padding: 12px;
/* border: 2px solid rgb(206, 31, 31); */
margin: 16px auto;
font-size: 19px;
border-radius: 13px;
font-family: 'Baloo Bhai 2', cursive;
}
.container h1 {
text-align: center;
}
.container button {
display: block;
width: 15%;
margin: 5% auto;
padding: 2%;
}
</style>
</head>
<body>
<header class="head">
<div class="left">
<img src="img/logo.png" alt="logo">
<div>Daily Fitness</div>
</div>
<div class="center">
<ul class="navbar">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="https://www.parivaar.club">Blog</a></li>
<li><a href="#">Contact</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 Us</h1>
<form action="#" method="post">
<div class="form-group">
<input type="text" placeholder="Enter your Name">
</div>
<div class="form-group">
<input type="number" placeholder="Enter your Age">
</div>
<div class="form-group">
<input type="email" placeholder="Enter your Email">
</div>
<div class="form-group">
<input type="number" placeholder="Enter your Phone Number">
</div>
<button class="btn">
Submit
</button>
</form>
</div>
</body>
</html>