recently started learning HTML so I'm wondering how to add sound effect to button in html, I saw some tutorials using js but I have no knowledge of js so my hands are tied pretty much, could someone just write me and explain what should I do? Thanks in advance. Code below. PS. I know it's messy and far from clean code but keep in mind that I started doing this like 2 days ago :)
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BREITLING</title>
<link rel="stylesheet" type="text/css" href="style1.css">
</head>
<body>
<div class="container">
<nav class="navbar">
<ul>
<li><a href="#home"><b>Home</b></a></li>
<li><a href="#store"><b>Store</b></a></li>
<li><a href="#trending"><b>Trending</b></a></li>
<li><a href="#about"><b>About</b></a></li>
</ul>
</nav>
<section id="home">
<h1 class="homenaslov">BREITLING</h1>
<p class="quote">La pobreza<br> es la suma<br> de horas<br> mal utilizadas</p>
</section>
<section id="store">
<h1 class="storenaslov">Store</h1>
<p class="sat1opis">NAVITIMER B01 CHRONOGRAPH 46</p>
<div id="satovi">
<div class="inline-block">
<img src="sat1.png" class="sat1" width="350px" height="375px">
</div>
<div class="inline-block">
<img src="sat2.webp" class="sat1" width="350px" height="375px">
</div><div class="inline-block">
<img src="sat3.webp" class="sat1" width="350px" height="375px">
</div>
</div>
<p class="out1">OUT OF STOCK!</p>
<p class="out2">OUT OF STOCK!</p>
<a href="sat1.html">
<button class="btn btn1">Purchase</button>
</a>
</section>
</div>
</body>
</html>