-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppreciation.html
126 lines (107 loc) · 3.03 KB
/
Appreciation.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
125
126
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Kevin Conroy</title>
<style>
body {
background-color: rgb(6, 4, 66);
width: 100%;
height: 100%;
}
h1 {
color: white;
}
u {
color: white;
}
footer {
text-align: center;
list-style: none;
color: white;
}
.banner {
border: 40px solid orange;
}
.contained {
position: relative;
bottom: -70px;
}
.buttons {
margin-top: 30px;
text-align: center;
color: yellow;
position: relative;
right: -0px;
top: 40px;
}
button {
background: none;
border: none;
cursor: pointer;
height: 48px;
outline: none;
padding: 0;
width: 48px;
}
#play {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/play.svg);
}
#play.played {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/play1.svg);
}
#pause {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/pause.svg);
}
#pause.paused {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/pause1.svg);
}
#stop {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/stop.svg);
}
#stop.stopped {
background-image: url(https://rpsthecoder.github.io/js-speech-synthesis/stop1.svg);
}
@media (max-width: 700px) {
html {
font-size: 14pt;
}
article {
width: 90%;
}
}
</style>
</head>
<body>
<article>
<u><em>
<h1 style="text-align: center;">Play this audio for something magical</h1>
</em></u>
<div class=buttons>
<button id=play></button>
<button id=pause></button>
<button id=stop></button>
</div>
<div class="contained">
<b>
<p class="text" style="text-align: center;">The Dark Knight<br>
Private Information Page Of The most Iconic Hero</p>
</b>
</div>
<div class="banner">
</div>
<video width="400px" height="300px" controls>
<source src="Kevin Conroy_ A Great Batman A Better Man.mp3" type="video/mp4">
</video>
</body>
<footer>
<u>
<h3>Created By: Vengeance</h3>
</u>
<li>Abdel Rahman Yousef </li>
<li>Abdul Cheema</li>
<li>Philip Idowu</li>
</footer>
</article>
<script src="textospeech.js"></script>
</html>