This repository has been archived on 2025-01-29. You can view files and clone it, but cannot push or open issues or pull requests.

50 lines
1.5 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="/js/jquery.js"></script>
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/video/css/style.css">
<link rel="icon" type="image/svg" href="/img/colormatic_logo.svg">
<title>Video Player</title>
<script>
$(document).ready(function(){
$("#navbar").load("/component/navbar.html");
$("#footer").load("/component/footer.html");
});
</script>
</head>
<body>
2024-12-31 23:09:19 -08:00
<div id="particle-container"></div>
<script src="/js/bg.js"></script>
2025-01-02 14:23:57 -08:00
<header id="navbar"></header>
2025-01-01 09:38:35 -08:00
<div class="video container">
<video id="videoplayer" controls></video>
<div class="videoobjects">
<div class="videodetails">
<h1 id="videotitle"></h1>
<p id="videodescription" class="justify"></p>
</div>
<div class="dropdown-container">
<div class="download-dropdown">
<img src="/img/download.svg" role="img" alt="Download" /> <!-- Bootstrap download icon: https://icons.getbootstrap.com/icons/download -->
<div class="dropdown-content">
<ul>
<li><a id="videodownload">Download Video</a></li>
<li><a id="sourcedownload">Download Source</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<footer id="footer"></footer>
<script src="/video/js/main.js"></script>
</body>
</html>