html-tips-tricks/voicerecognition.html

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