|
<!DOCTYPE html> |
|
<html> |
|
|
|
<head> |
|
<meta charset="utf-8"> |
|
<meta name="viewport" content="width=device-width"> |
|
<title>Personal Assistant</title> |
|
<link href="style.css" rel="stylesheet" type="text/css" /> |
|
</head> |
|
|
|
<body> |
|
<h1>Personal Assistant</h1> |
|
|
|
<script src="assistant.js"></script> |
|
<script> |
|
greet(); |
|
setInterval(() => { |
|
const command = listen(); |
|
if (command === 'wikipedia') { |
|
speak('Searching Wikipedia...'); |
|
} |
|
}, 500); |
|
</script> |
|
|
|
|
|
|
|
|
|
|
|
|
|
<script src="https://replit.com/public/js/replit-badge-v2.js" theme="dark" position="bottom-right"></script> |
|
</body> |
|
|
|
</html> |
|
|