Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
Create index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartw843 authored Mar 25, 2024
0 parents commit f3ec2d5
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Media Loader</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}

video {
max-width: 100%;
margin-top: 20px;
}

</style>
</head>
<body>
<select id="mediaSelector">
<!-- Options will be populated by JavaScript -->
</select>
<video id="videoPlayer" controls>
<track id="subtitleTrack" label="English" kind="subtitles" srclang="en">
</video>
<script src="script.js"></script>
</body>
</html>

0 comments on commit f3ec2d5

Please sign in to comment.