-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (56 loc) · 1.61 KB
/
index.html
File metadata and controls
64 lines (56 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" href="bootstrap.css">
<link rel="stylesheet" href="w3.css">
<script src="jquery.js"></script>
<link rel="stylesheet" href="devBot.css">
<meta name="viewport" content="width=device-width, scale='1'">
<script src="jquery.js"></script>
</head>
<body onload="introl()">
<h6></h6>
<div class="row">
<div class="col-sm-8 col-xs-8">
<br>
<div class="w3-container">
<div class="card">
<span class="w3-teal" id="assist"><h4><b>ROH-BOT</b></h4></span>
<center>
<input type="text" class="form-control">
<br>
<p id="reply"></p>
<div class="out">
</div>
<img src="voice.png" onclick="voice()">
<br>
<img src="yhoung.jpg" class="img-thumbnail" id="print">
<div class="help">
<div class="alert alert-success">
<span id="cancel" class="pull-left" onclick="this.parentElement.style.display='none'"><b>×</b></span><br>
<b><u>KEYWORDS</u></b><br>
<i><b>say the following below keywords</b></i>
<b> PLAY</b>: this will play am audio track
<b> PHOTO</b>: show photo of the developer
<b> BLACK</b>: gives it dark theme
<b> WHITE</b>: gives it white theme
<b> TIME</b> : shows your current time
</div>
</div>
<audio src="mem.mp3" controls>
</center>
<button class="btn btn-danger" onclick="help()"><b>HELP</b></button>
</div>
</div>
</div>
<script type="text/javascript">
function help(){
var help=document.querySelector(".alert");
help.style.display='block';
}
</script>
</div>
<script src="devBot.js"></script>
</body>
</html>