-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutus.html
146 lines (128 loc) · 4.26 KB
/
aboutus.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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Batman Feats</title>
<style>
body {
background-color: rgb(6, 4, 66);
}
h1{
text-align: center;
color: white;
}
u{
color: white;
}
h2{
text-align: center;
color: white;
}table, th, td{
border: 3px solid;
color: yellow;
text-align: center;
position: relative; left: 80px;
}
footer{
text-align: center;
list-style: none;
color: white;
position: relative; bottom: -240px;
}
th{
position: relative; left: 0px;
}
td{
position: relative; left: 0px;
}
.buttons {
margin-top: 25px;
text-align: center;
color: yellow;
}
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%;
}
}
body {
margin: 0;
}
.banner {
border: 40px solid orange;
}
.contained {
position: relative;
bottom: -70px;
}
</style>
</head>
<div class=buttons>
<button id=play></button>
<button id=pause></button>
<button id=stop></button>
</div>
<article>
<body>
<u><h1>About the creators of this website</h1></u>
<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>
<div class="table">
<table style="width: 80%">
<tr>
<th>Abdul Cheema</th>
<th>Philip Idowu</th>
<th>Abdel yousef</th>
</tr>
<tr>
<td>Mastering 127 forms of hand to hand combat</td>
<td>Dodges point-blank gunfire from Clayface, and even counters</td>
<td>Has gone toe to toe against Superman in battle</td>
</tr>
</div>
<footer>
<u><h3>Created By: Vengeance</h3></u>
<li>Abdel Rahman Yousef </li>
<li>Abdul Cheema</li>
<li>Philip Idowu</li>
</footer>
</article>
</body>
<script src="textospeech.js"></script>
</html>