-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 3.52 KB
/
index.html
File metadata and controls
66 lines (66 loc) · 3.52 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
<!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>Loki BGM</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="logo.jpeg" type="image/icon type">
</head>
<body>
<div class="header">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M3 4h18v2H3V4zm0 7h12v2H3v-2zm0 7h18v2H3v-2z" fill="rgba(255,255,255,1)"/></svg>
<img src="logo.jpeg" alt="logo">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24"><path fill="none" d="M0 0h24v24H0z"/><path d="M4 12h3a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7C2 6.477 6.477 2 12 2s10 4.477 10 10v7a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h3a8 8 0 1 0-16 0z" fill="rgba(255,255,255,1)"/></svg>
</div>
<div class="hero">
<img src="hero-logo.png" alt="">
</div>
<div class="container">
<div class="card">
<img src="card-img.jpg" alt="loki" id="play">
<div class="actions">
<audio id="song">
<source src="bgm-1.mp3" type="audio/mp3">
</audio>
<img src="paused.png" alt="button" id="icon">
</div>
</div>
<div class="card">
<img src="card-img.jpg" alt="loki">
<div class="actions">
<audio id="song2">
<source src="bgm-2.mp3" type="audio/mp3">
</audio>
<img src="paused.png" alt="button" id="icon2">
</div>
</div>
</div>
<div class="container">
<div class="card">
<img src="card-img.jpg" alt="loki">
<div class="actions">
<audio id="song3">
<source src="bgm-3.mp3" type="audio/mp3">
</audio>
<img src="paused.png" alt="button" id="icon3">
</div>
</div>
<div class="card">
<img src="card-img.jpg" alt="loki">
<div class="actions">
<audio id="song4">
<source src="bgm-4.mp3" type="audio/mp3">
</audio>
<img src="paused.png" alt="button" id="icon4">
</div>
</div>
</div>
<div class="footer">
<h3>CopyRight <span style="text-decoration: underline;">Ojas Verma</span></h3>
<a href="https://www.github.com" target="_blank"><svg style="cursor: pointer;" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="64" height="64"><path fill="none" d="M0 0h24v24H0z"/><path d="M12 2C6.475 2 2 6.475 2 12a9.994 9.994 0 0 0 6.838 9.488c.5.087.687-.213.687-.476 0-.237-.013-1.024-.013-1.862-2.512.463-3.162-.612-3.362-1.175-.113-.288-.6-1.175-1.025-1.413-.35-.187-.85-.65-.013-.662.788-.013 1.35.725 1.538 1.025.9 1.512 2.338 1.087 2.912.825.088-.65.35-1.087.638-1.337-2.225-.25-4.55-1.113-4.55-4.938 0-1.088.387-1.987 1.025-2.688-.1-.25-.45-1.275.1-2.65 0 0 .837-.262 2.75 1.026a9.28 9.28 0 0 1 2.5-.338c.85 0 1.7.112 2.5.337 1.912-1.3 2.75-1.024 2.75-1.024.55 1.375.2 2.4.1 2.65.637.7 1.025 1.587 1.025 2.687 0 3.838-2.337 4.688-4.562 4.938.362.312.675.912.675 1.85 0 1.337-.013 2.412-.013 2.75 0 .262.188.574.688.474A10.016 10.016 0 0 0 22 12c0-5.525-4.475-10-10-10z"/></svg></a>
</div>
<script src="script.js"></script>
</body>
</html>