Zakarya
affe6bc585
Overhauled the mobile page menu to actually be intuitive Fixed the video download menu (dark theme and a typo) Head tags are now consistent between pages Added alt texts to all images, and proper HTML formatting A few wording changes here and there A new link to Colormatic Git
50 lines
1.5 KiB
HTML
50 lines
1.5 KiB
HTML
<!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>
|
|
<div id="particle-container"></div>
|
|
<script src="/js/bg.js"></script>
|
|
<header id="navbar"></header>
|
|
|
|
<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>
|