hi! welcome to the forum!
there are a bit weird things happening here. first with html file, you don’t need p5.dom anymore as it is integrated in p5.js. also you are loading p5.js twice. and you need double quotation marks around the url. you can use default file from the web editor
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
</head>
<body>
<script src="sketch.js"></script>
</body>
</html>
in the sketch file you are missing sketch
before quinnListenMic
in draw - otherwise it should work.