-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathdance.html
More file actions
167 lines (139 loc) · 4.58 KB
/
dance.html
File metadata and controls
167 lines (139 loc) · 4.58 KB
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
166
167
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/dance.css">
<link rel="stylesheet" type="text/css" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css">
</head>
<body>
<!--header-->
<header id="header" class="sticky-top">
<!--navbar-->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark font-italic">
<div class="container">
<!--brand-->
<a href="#" class="navbar-brand">
<!--logo-->
<h2 class="font-italic">
Play
<span class="badge badge-primary shadow">Activity</span>
</h2>
</a>
<!--nav button-->
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navlinks">
<span class="navbar-toggler-icon"></span>
</button>
<!--nav Links-->
<div class="collapse navbar-collapse justify-content-end" id="navlinks">
<ul class="navbar-nav text-center">
<!--home-->
<li class="nav-item active">
<a href="home.html" class="nav-link">Home</a>
</li>
<!--products-->
<li class="nav-item ml-1">
<a href="sport.html" class="nav-link">sports</a>
</li>
<li class="nav-item ml-1">
<a href="books.html" class="nav-link">Books</a>
</li>
</li>
</ul>
</div>
</div>
</nav>
<!--nav end-->
</header>
<!--header end-->
<main>
<!--banner-->
<article id="banner" class="jumbotron jumbotron-fluid">
<div class="font-italic pl-4 mt-4 text-light">
<h1 class="display-1 font-italic">
Play
<span class="badge badge-primary shadow">Dance</span>
</h1>
<p class="lead mt-5">
make the move with dedication and
<i class="fa fa-heart ml-1 text-danger"></i>
</p>
</div>
</article>
<!--banner end-->
<div class="container mt-4">
<h4 class="text-center font-italic mb-4">Dance List
<span class="fa fa-star fa-lg text-warning"></span>
</h4>
<div class="row justify-content-center font-italic mt-4">
<div class="col-md-4">
<!--product card-->
<article class="card text-center font-italic mb-4">
<!--product image-->
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcTi_46vIgc7etkTFKtqEAjOMqwsleGtb6bBAA&usqp=CAU" alt="image" class="card-img-top">
<div class="card-body">
<!-- name-->
<h5 class="card-title">
Hip-hop
</h5>
<!--more info button-->
<a href="#" class="btn btn-success mb-2">
<i class="fa fa-info-circle" aria-hidden="true"></i>
More info
</a>
</div>
</article>
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="page-footer font-small cyan darken-3">
<!-- Footer Elements -->
<div class="container">
<!-- Grid row-->
<div class="row">
<!-- Grid column -->
<div class="col-md-12 py-5 flex-center">
<div class="mb-5 flex-center">
<!-- Facebook -->
<a class="fb-ic">
<i class="fab fa-facebook-f fa-lg white-text mr-md-5 mr-3 fa-2x">
</i>
</a>
<!-- Twitter -->
<a class="tw-ic">
<i class="fab fa-twitter fa-lg white-text mr-md-5 mr-3 fa-2x">
</i>
</a>
<!-- Google +-->
<a class="gplus-ic">
<i class="fab fa-google-plus-g fa-lg white-text mr-md-5 mr-3 fa-2x">
</i>
</a>
<!--Linkedin -->
<a class="li-ic">
<i class="fab fa-linkedin-in fa-lg white-text mr-md-5 mr-3 fa-2x">
</i>
</a>
<!--Instagram-->
<a class="ins-ic">
<i class="fab fa-instagram fa-lg white-text mr-md-5 mr-3 fa-2x">
</i>
</a>
</div>
</div>
<!-- Grid column -->
</div>
<!-- Grid row-->
</div>
<!-- Footer Elements -->
<!-- Copyright -->
<div class="footer-copyright text-center py-3">
© 2020 Copyright: Play Activity
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</body>
</html>