29 lines
789 B
HTML
29 lines
789 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Voice Pitch Analyzer</title>
|
|
<script src="https://nocdnbs.private.coffee/ajax/libs/p5.js/1.4.0/p5.js"></script>
|
|
<script src="https://nocdnbs.private.coffee/ajax/libs/p5.js/1.4.0/addons/p5.sound.min.js"></script>
|
|
<style>
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
background-color: #f4f4f9;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<h2>Voice Pitch Analyzer</h2>
|
|
|
|
<script src="./script.js"></script>
|
|
|
|
</body>
|
|
</html>
|