I added a video from my local computer in my website by using video tag, everything is working fine but video is running without sound. Sound option is greyed-out. I tried using different Video but issue still persisted.
Audio file is working totally fine. Even video I used on HTML are working in Media players also. Idk what's problem here
Here is my code snippet
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> New Page</title>
<style>
video {
width: 300px;
height: 200px;
border: 1px solid #666;
}
</style>
<link rel="stylesheet" href="style/style.css">
</head>
<header>
<h1>Hyperlink</h1>
</header>
<main>
This is test!!!!!!!!
<div id='Absoulute'>
</div>
<video src="video/video.mp4" controls autoplay unmuted ></video>
<br>
<div>
<h2> Audio</h2>
<audio controls>
<source src="video/audio.mp3">
</audio>
</div>
</main>
</html>