-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
96 lines (80 loc) · 3.38 KB
/
Copy pathindex.html
File metadata and controls
96 lines (80 loc) · 3.38 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
<!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>Document</title>
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href=" https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
</head>
<body>
<div class="first-container container-fluid">
<div class="container-fluid page-links">
<div>
<ul>
<li>
<a href="Events.html">Events & Tickets <i class="fa-solid fa-ticket"></i></a>
</li>
<li><a href="bookings.html">Bookings</a></li>
<li><a href="#">Music Videos</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
<div class="insta">
<a href="https://www.instagram.com/keno_graphy/"><i class="fa fa-instagram" aria-hidden="true"></i> instagram</a>
</div>
</div>
<div class="row">
<div class="introduction col-lg-6" >
<h1>KENOGRAPHY RECORDS</h1>
<p>Feel the rhythm, feel the vibe. Bringing the best of Afrobeats to your speakers. Join me on my journey to
spread the joy of music around the world.
<br>
<br>
Afrobeats is more than just a genre of music - its a cultural movement that has swept the world. At our website
we are dedicated to celebrating rich history and vibrant present of Afrobeats music.
<br>
<br>
<a href="about.html">Read more...</a>
</p>
<img src="stream.jpg" alt="">
</div>
<div class=" col-lg-6">
<div class="picture">
</div>
<div class="my-name"><p>Musician :- Sir Keno</p></div>
</div>
</div>
</div>
<div class="second-container container-fluid">
<h3 id="tracks" style="color:#f2f2f2">TRACKS</h3>
<br>
<br>
<p class="notes">Released Tracks</p>
<div class="track-1">
<button class="view-songs" onclick="visitPage();"><i class="fa-solid fa-play"></i></button>
</div>
<div class="track-2">
<button class="view-songs" onclick=""><i class="fa-solid fa-play"></i></button>
</div>
<div class="out-soon">
<p class="notes">Upcoming Projects</p>
<ul>
<li class="notes">Heartbreak</li>
</ul>
</div>
</div>
<footer class="footer">
</footer>
<script src="https://kit.fontawesome.com/4158e11c71.js" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script src="index.js"></script>
<script>
function visitPage(){
window.location='http://linktr.ee/keno_graphy';
}
</script>
</body>
</html>