-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
53 lines (49 loc) · 1.4 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Tizen basic template generated by Tizen Web IDE" />
<title>PoC - Web - Voice Interaction Content Search</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="topBar">
<input type="text" id="searchBar" maxlength="50" placeholder="Insert a movie title, actor, genre..." autofocus>
</div>
<div id="suggestionText">
<img src="images/microphone.png">
<div>
<p>Try saying</p>
<p>Search action movies</p>
<p>Find drama TV Shows</p>
</div>
</div>
<div id="resultTitle">
</div>
<div aria-label="All search results" id="mainContent">
<div id="inputResult">
</div>
<div id="movie">
<p>Movies</p>
</div>
<div id="movieResult">
</div>
<div id="tv">
<p>TV Shows</p>
</div>
<div id="tvResult">
</div>
</div>
<div id="button-helpModule">
<img tabindex="0" src="images/information.png" onclick="window.location.href='helpModule.html'">
</div>
<footer class="footer">
<div id="toast">
<div id="desc">A notification message...</div>
</div>
</footer>
<script src="language.js"></script>
<script src="js/main.js"></script>
</body>
</html>