Create voicerecognition.html

This tricks is used to add voice search in the input field. Like Google search, it searches on by voice recognition.
This commit is contained in:
lallunallala87 2022-10-12 23:30:04 +05:30 committed by GitHub
parent 9988da9174
commit 214afc653d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 0 deletions

22
voicerecognition.html Normal file
View File

@ -0,0 +1,22 @@
<!DOCTYPE html>
<html>
<head>
<title>Voice recognition</title>
<style>
.container {
text-align: center;
}
h1 {
color: green;
}
</style>
</head>
<body>
<div class="container">
<h1>GeeksforGeeks</h1>
<b>Voice recognition</b>
<input type="text" x-webkit-speech>
</div>
</body>
</html>