-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
161 lines (129 loc) · 4.93 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
<!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>DanceMasti</title>
<!-- Including All the style sheets -->
<link rel="stylesheet" href="index.css" />
<link rel="stylesheet" href="media queries.css" />
<!-- Including All the Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Marck+Script&display=swap"
rel="stylesheet"
/>
<!-- Including the javascript file -->
</head>
<body>
<!-- Editing the banner of Our Website -->
<div class="container">
<section class="banner">
<h1>DanceMastiClasses</h1>
</section>
</div>
<!-- //Adding the navigation Bar -->
<nav class="nav-bar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="aboutus.html">About Us</a></li>
</ul>
</nav>
<!-- Introduction section -->
<div class="container">
<section class="intro">
<h1>
Your one-stop destination to learn,enjoy and<br />
Master the Dance!!!
</h1>
<!-- Placce where we will display different types of dance styles -->
<div class="intro-content">
<div class="row">
<ul>
<li class="styleName">Bollywood</li>
<li class="styleName">Classical</li>
<li class="styleName">Western</li>
<li class="styleName">Khathak</li>
</ul>
</div>
<div class="row">
<ul>
<li class="styleName">HipHop</li>
<li class="styleName">BreakDance</li>
<li class="styleName">FreeStyle</li>
<li class="styleName">Robotic</li>
</ul>
</div>
<div class="row">
<ul>
<li class="styleName">Bharatnatyam</li>
<li class="styleName">Ballet</li>
<li class="styleName">Tap Dance</li>
<li class="styleName">Yoga</li>
</ul>
</div>
<div class="mini-services">
<div class="mini">100+ Dance forms</div>
<div class="mini">10000+ Students Enrolled</div>
<div class="mini">Free Trial For 2 Weeks</div>
</div>
</div>
</section>
<!-- Services Section -->
<section== class="our-services">
<h1 id="utility">Services Provided</h1>
<!-- describing each service one by one -->
<ul class="service">
<li>5 Classes Per week</li>
</ul>
<h3 class="para">
We take 2 hrs class each day from monday to friday to learn from
teachers and 2 days gap to students for practicing on their own.
</h3>
<ul class="service">
<li>Experienced faculty</li>
</ul>
<h3 class="para">
We have the teachers with proficiency in various dance styles ,who
have experience of over 7 years.
</h3>
<ul class="service">
<li>Flexible timings</li>
</ul>
<h3 class="para">
We have batches in morning,afternoon and evening which are suited to
fit in anyone's schedule with minimum efforts.
</h3>
<ul class="service">
<li>Modern conveyance facilities</li>
</ul>
<h3 class="para">
We provide the facility to pickup students from their home in safe
vans and buses
whic have all the comfort and safety facilities facilities
</h3>
</section>
<!-- Creating our registration Section -->
<section class="register">
<h1 id="utility">Registration for Classes</h1>
<!-- Asking for various details of user -->
<form action="post" class="registration">
<div class="input">
Name: <input type="text" placeholder="Enter your name" /> Email:
<input type="email" placeholder="Enter your email" /> Contact
Number:
<input type="number" placeholder="Enter your Contact Number" /> Date
of Birth: <input type="date" /> Age:
<input type="number" placeholder="Enter your Age" />
<button>Submit</button>
</div>
</form>
</section>
</div>
<footer>©AllRightsReserved||DanceMastiClasses</footer>
</body>
<script src="index.js"></script>
</html>