mirror of
https://github.com/atapas/html-tips-tricks.git
synced 2024-11-16 08:48:26 +01:00
214afc653d
This tricks is used to add voice search in the input field. Like Google search, it searches on by voice recognition.
22 lines
330 B
HTML
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>
|