forked from dscabesit/playactivity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdance.html
More file actions
141 lines (111 loc) · 3.68 KB
/
Copy pathdance.html
File metadata and controls
141 lines (111 loc) · 3.68 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
<!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 id="footer" class="container-fluid mt-2">
<div class="d-flex justify-content-center">
<a href="#">
<i class="fab fa-instagram fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-google-plus fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-facebook fa-3x"></i>
</a>
<a href="#">
<i class="fab fa-twitter fa-3x"></i>
</a>
</div>
<p class="text-muted text-center mt-2 font-italic">
<!--copyright information-->
Copyright © 2020 Dance
</p>
</footer>
</body>
</html>