html-tips-tricks/voicerecognition.html
lallunallala87 214afc653d
Create voicerecognition.html
This tricks is used to add voice search in the input field. Like Google search, it searches on by voice recognition.
2022-10-12 23:30:04 +05:30

22 lines
330 B
HTML

<!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>