forked from Shubham56-droid/Web-Components-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 1.06 KB
/
index.html
File metadata and controls
28 lines (23 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/cyborg/bootstrap.min.css" integrity="sha384-nEnU7Ae+3lD52AK+RGNzgieBWMnEfgTbRHIwEvp1XXPdqdO6uLTd/NwXbzboqjc2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="./style.css" />
</head>
<body>
<div class="container-fluid">
<h1 class="navbar-brand d-block mx-auto text-center">Coding Radio Station</h1>
<img src="https://images.unsplash.com/photo-1580927752452-89d86da3fa0a?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80" class="rounded mx-auto d-block coding-image" alt="cool-coding-image">
<div>
<button id="button" class="mx-auto mt-4 d-block">Play</button>
</div>
<audio id="player" >
<source src='./code-fi_beats.mp3' type='audio/mp3'/>
</audio>
</div>
<script src="script.js"></script>
</body>
</html>