-
Notifications
You must be signed in to change notification settings - Fork 0
/
actions.html
executable file
·124 lines (89 loc) · 3.52 KB
/
actions.html
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE HTML>
<HTML>
<head>
<title> Strong voice </title>
<link href='https://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="./css/normalize.css">
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<div class="background">
</div>
<nav class="lighten-1" role="navigation">
<ul class="right hide-on-med-and-down">
<li><a href="#"></a></li>
</ul>
<ul class="nav-tabs" role="tablist">
<li role="presentation" class="active"><a href="./index.html">Home</a></li>
<li role="presentation"><a href="#">About us</a></li>
<li role="presentation"><a href="./category.html">Find Your Words</a></li>
<li role="presentation"><a href="./sentence.html">Make Your Own Sentence</a></li>
<li role="presentation"><a href="./vocabulary.html">My Vocabulary</a></li>
</ul>
<div class="content">
<h1 class="name"> Actions </h1>
</div>
<div class="marketing">
<div class="row">
<div class="beginning">
<img class="img-circle" src='./actions/walk.png' width="140" height="140">
<h2><strong>Walk<strong></h2>
<p>Going somewhere?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/go.png" width="140" height="140">
<h2><strong>Go<strong></h2>
<p>Going somewhere?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/run.png" width="140" height="140">
<h2><strong>Run<strong></h2>
<p>In a rush?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/open.png" width="140" height="140">
<h2><strong>Open<strong></h2>
<p>Want something?</p>
</div>
<div class="beginning">
<img class="img-circle" src="./actions/close.png" width="140" height="140">
<h2><strong>Close<strong></h2>
<p>Want it gone?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/eat.png" width="140" height="140">
<h2><strong>Eat<strong></h2>
<p>Hungry?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/sleep.jpg" width="140" height="140">
<h2><strong>Sleep<strong></h2>
<p>Tired?</p>
</div>
<div class="follow">
<img class="img-circle" src="./actions/clean.jpg" width="140" height="140">
<h2><strong>Clean<strong></h2>
<p>Dirty?</p>
</div>
</div>
<!-- Speech Synthesis -->
<div class="speech">
<div class="title">
<h3 class="name"> I want to </h3>
</div>
<p id="msg"></p>
<input type="text" name="speech-msg" id="speech-msg" x-webkit-speech>
<div class="option">
<h4><label for="voice"></label></h4>
<h4><select name="voice" id="voice"></select></h4>
</div>
<div class="option">
<h4><label for="volume">Volume</label></h4>
<h4><input type="range" min="0" max="1" step="0.1" name="volume" id="volume" value="1"></h4>
</div>
<h5><button id="speak" class="btn-large waves-effect wave-light cyan">Speak</button></h5>
<script src="js/speechsynthesis.js"></script>
</div>
</body>
</HTML>