Skip to content

Commit

Permalink
day20/30JS_voice_recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
archeana committed Jan 27, 2024
1 parent ccdb12c commit 0e02089
Show file tree
Hide file tree
Showing 5 changed files with 4,425 additions and 0 deletions.
34 changes: 34 additions & 0 deletions Day_20/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<!DOCTYPE html>
<html lang="en">

<head>
<meta charset="UTF-8">
<title>Speech Detection</title>
<link rel="stylesheet" href="style.css">
</head>

<body>
<div class="navigation">
<a class="card previous-card" href="#"
onclick="goToPreviousProject()">
<span>Previous</span>
</a>
<a class="card home-card" href="https://archeana.github.io/JS30/" onclick="goToHomepage()">
<span>Home</span>
</a>
<a class="card next-card" href="#" onclick="goToNextProject()">
<span>Next</span>
</a>
</div>
<br>
<br>
<div class="words" contenteditable>
</div>

<script src="script.js"></script>



</body>

</html>
Loading

0 comments on commit 0e02089

Please sign in to comment.