-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
43 lines (38 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Govorit</title>
<!-- Third party libraries. -->
<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
<script src="https://cdn.jsdelivr.net/jquery.textfill/0.6.0/jquery.textfill.min.js"></script>
<!-- Custom scripts. -->
<script src="wapi.js"></script>
<script defer src="main.js"></script>
<style type="text/css">
html, body {
font-family: Times New Roman;
height: 100%;
width: 100%;
margin: 0 0;
cursor: pointer;
}
#enlarger {
text-align: center;
position: relative;
}
#preview {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<div id="enlarger" style="width: 100%; height: 100%;">
<span id="preview"></span>
</div>
<audio id="playback"></audio>
</body>
</html>