-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdj.html
More file actions
94 lines (84 loc) · 5.27 KB
/
dj.html
File metadata and controls
94 lines (84 loc) · 5.27 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>techno dj demo</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
<link href="dj.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=aldrich:400" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div class="wrapper">
<div class="container mt-5 mb-5">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 text-center">
<img src="./ARTISTE.jpg" class="img-fluid rounded-circle border border-3 border-light" width="320" alt="artiste profile image">
</div>
</div>
</div>
<div class="container mt-2 mb-2">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 text-center">
<i class="fab fa-facebook-f fa-lg text-white mt-2 me-3"></i>
<!-- Instagram -->
<i class="fab fa-instagram fa-lg text-white me-3"></i>
<!-- Twitter -->
<i class="fab fa-twitter fa-lg text-white me-3"></i>
<!-- Youtube -->
<i class="fab fa-youtube fa-lg text-white me-3"></i>
<!-- Apple -->
<i class="fab fa-apple fa-lg text-white me-3"></i>
<!-- Spotify -->
<i class="fab fa-spotify fa-lg text-white"></i>
<h2 class="fw-semibold text-white mt-4 mb-3 text-uppercase">Latest Album</h2>
<iframe style="border-radius:12px" src="https://open.spotify.com/embed/playlist/56DiknklKybDzwfiXEb48t?utm_source=generator" width="100%" height="380" frameBorder="0" allowfullscreen="" allow="autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" loading="lazy"></iframe>
<div class="d-grid gap-3 mt-3">
<button class="btn btn-1 p-3" type="button">Facebook</button>
<button class="btn btn-1 p-3" type="button">Instagram</button>
<button class="btn btn-1 p-3" type="button">Twitter</button>
<button class="btn btn-1 p-3" type="button">YouTube</button>
<button class="btn btn-1 p-3" type="button">Apple Music</button>
<button class="btn btn-1 p-3" type="button">Spotify</button>
</div>
</div>
</div>
</div>
<div class="container mt-2 mb-2">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 text-center">
<h3 class="fw-semibold mt-2 mb-3 text-white">Latest Video</h3>
<div class="ratio ratio-16x9 mt-2 mb-2">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/iAguE62acA8" title="YouTube video" allowfullscreen></iframe>
</div>
<div class="d-grid gap-3 mt-3">
<button class="btn btn-1 p-3" type="button">Video 1 Link</button>
<button class="btn btn-1 p-3" type="button">Video 2 Link</button>
<button class="btn btn-1 p-3" type="button">Video 3 Link</button>
</div>
</div>
</div>
</div>
<div class="container mt-2 mb-5">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 text-center">
<h3 class="fw-semibold mt-2 mb-3 text-white">Latest Merchandise</h3>
<img src="./tee.jpg" alt="new t shirt" class="img-fluid">
<div class="d-grid gap-3 mt-2">
<button class="btn btn-1 p-3" type="button">Shop Now</button>
</div>
</div>
</div>
</div>
<div class="container mb-2">
<div class="row justify-content-center">
<div class="col-sm-12 col-md-10 col-lg-8 text-center">
<a href="https://dragonfiredesignstudio.com" target="_blank"><img src="./df small footer logo.png" alt="dragon fire design studio logo" class="img-fluid" width="40"></a> </div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>