Mediastreamer / player.html
Subham9126's picture
Update player.html
8d81895 verified
Raw
History Blame Contribute Delete
1.54 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Video Player</title>
<link href="https://vjs.zencdn.net/8.10.0/video-js.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">Video Browser</div>
<div class="search">
<input type="text" id="searchInput" placeholder="Search videos...">
<button id="searchBtn">Search</button>
</div>
</header>
<main class="player-container">
<div class="player-main">
<div class="video-container">
<video id="mainVideo" class="video-js vjs-default-skin" controls preload="auto">
<p class="vjs-no-js">
To view this video please enable JavaScript, or consider upgrading to a
web browser that supports HTML5 video
</p>
</video>
</div>
<div class="video-info">
<h1 id="videoTitle"></h1>
<p id="videoDescription"></p>
</div>
</div>
<div class="suggestions" id="suggestions">
<h2>Suggested Videos</h2>
<!-- Suggested videos will be loaded here dynamically -->
</div>
</main>
<script src="https://vjs.zencdn.net/8.10.0/video.min.js"></script>
<script src="script.js"></script>
</body>
</html>