mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 00:38:26 +01:00
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:
parent
9988da9174
commit
214afc653d
1 changed files with 22 additions and 0 deletions
22
voicerecognition.html
Normal file
22
voicerecognition.html
Normal 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>
|
Loading…
Reference in a new issue