As I continue to learn HTML, CSS, and JavaScript to create a basic website for educational purposes, I have successfully embedded a video stored in my drive using the video element on an HTML page. However, I now aim to also display the video's title, total duration, and view count alongside the video itself. Can someone guide me on where to focus more of my efforts and provide resources for learning how to achieve this integration?
Here is my current HTML code snippet:
* {
padding:0px;
margin:0px;
}
/* Rest of the CSS styles go here */
<!DOCTYPE HTML>
<html lang = "en">
<head>
<title>Videos</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="videos.css">
</head>
<body>
<header>
<nav>
<h1> Main logo </h1>
<ul id="nav">
<li><a class="homeblack" href="index.html">Home</a></li>
<li><a class="homered" href="videos.html">Videos</a></li>
</ul>
</nav>
</header>
<div class="divider"></div>
<div id="navBar">
<ul>
<li><a href="#">Education Videos</a></li>
<li><a href="#">Film Videos</a></li>
<li><a href="#">Other Videos</a></li>
</ul>
</div>
<video title="Video Title" controls width="250" height="160">
<source src="videoplayback.mp4" />
</video>
<video title="Another Video Title" controls width="250" height="160">
<source src="videoplayback (1).mp4" />
</video>
<video title="One More Video Title" controls width="250" height="160">
<source src="1 Ton.mp4" />
</video>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</body>
</html>