-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>TTS E-book</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css'>
<link rel="stylesheet" href="css/style.css">
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0-rc.1/js/materialize.js'></script>
<script src="js/index.js"></script>
</head>
<body>
<div class="container" id="page">
<h1>Magical Unicorns</h1>
<img src="https://www.allaboutunicorns.com/images/unicorn1%20(1).jpg" id ="image">
<p id="text">In a land full of unicorns there once was a magical garden.</p>
<div class="row">
<div class="col s3">
<i class="medium material-icons" id="back">arrow_back</i>
</div>
<div class="col s3">
<i class="large material-icons" onclick="playText()" id="play" >play_arrow</i>
</div>
<div class="col s3">
<i class="large material-icons" id="pause">pause</i>
</div>
<div class="col s3">
<i class="medium material-icons" id="next">arrow_forward</i>
</div>
</div>
</body>
</html>