-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
162 lines (154 loc) · 5.18 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
<!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>Index</title>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<nav id="navbar">
<div id="logo">
<img src="img/Gym.jfif" alt="pic not found" width="95px " height="95px">
</div>
<ul>
<li><a href="#" target="blank">Home</a></li>
<li><a href="#" target="blank">Services</a></li>
<li><a href="#" target="blank">Blog</a></li>
<li><a href="#" target="blank">About Us</a></li>
<li><a href="#" target="blank">Contact Us</a></li>
</ul>
</nav>
<section id="home">
<h1 id="h-primary">
WELCOME TO MY GYM
</h1>
<p>
Take a Step Ahead towards a Healthy Lifestyle.
</p>
<br>
<button class="btn">
Join Now
</button>
</section>
<br><br><br><br><br><br><br><br><br>
<footer class="footer">
<!-- <h1 class="h-secondary">
CONTACT US
</h1> -->
<br><br>
<div class="box">
<img src="img/laptop.jpg" alt="pic not found" height="100px" width="100px" class="img">
<em>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque praesentium at totam iure
suscipit quos accusamus dolorem. Sapiente, laboriosam a.
</p>
</em>
</div>
<br>
<div class="box">
<img src="img/Keyboard.jpg" alt="pic not found" height="100px" width="100px" class="img">
<em>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque praesentium at totam iure
suscipit quos accusamus dolorem. Sapiente, laboriosam a.
</p>
</em>
</div>
<br>
<div class="box">
<img src="img/bg-3.jpg" alt="pic not found" height="100px" width="100px" class="img">
<em>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Doloremque praesentium at totam iure
suscipit quos accusamus dolorem. Sapiente, laboriosam a.
</p>
</em>
</div>
</footer>
<br><br>
<section class="sd">
<center>
<h1>
Contact Us <br> On
</h1>
</center>
<span class="dir">
<div class="b">
<a href="www.Telegram.com" target="blank">
<img src="img/Telegram.png" alt="Telegram">
</a>
<p>
Telegram
</p>
</div>
<div class="b">
<a href="WWW.Whatsapp.com" target="blank">
<img src="img/Whatsapp 3.png" alt="Whatsapp">
</a>
<p>
Whatsapp
</p>
</div>
<div class="b">
<a href="WWW.Skype.com" target="blank">
<img src="img/Skype.png" alt="Skype">
</a>
<p>
Skype
</p>
</div>
</span>
</section>
<section class="sou">
<span>
<center>
<h2>
<!-- <u> -->
FILL UP YOUR PERSONAL INFO & JOIN OUR GYM
<!-- </u> -->
</h2>
</center>
<fieldset>
<legend>
<h1>
Personal Info
</h1>
</legend>
<form action="noaction.php">
<div>
<label for="n">Name:</label>
<input type="text" id="n" placeholder="Input Your Name">
</div>
<br>
<div>
<label for="a">Age: </label>
<input type="date" name="Age" id="a">
</div>
<br>
<div>
<label for="e">Email Id:</label>
<input type="email" name="Email" id="e" placeholder="Input Your Email ID">
</div>
<br>
<div class="gend">
<label for="m">Male:</label>
<input type="radio" name="Gender" id="m" checked>
<label for="f">Female:</label>
<input type="radio" name="Gender" id="f">
<label for="o">Others:</label>
<input type="radio" name="Gender" id="o">
</div>
<br>
<div class="button">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</div>
</form>
</fieldset>
</span>
</section>
</body>
</html>