-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandom.html
More file actions
64 lines (64 loc) · 1001 Bytes
/
random.html
File metadata and controls
64 lines (64 loc) · 1001 Bytes
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
<html>
<head>
<style>
table {
text-align: center;
border: 1px solid black;
width: 100%;
margin-bottom: 20px;
}
tr.header {
font-weight: bold;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
</style>
</head>
<body>
<table>
<tr class="header">
<td>
Loul
</td>
<td>
Guillaume
</td>
<td>
Chris
</td>
<td>
Dave
</td>
<td>
Louis
</td>
</tr>
<tr>
<td>
Jungle, Support
</td>
<td>
Mid, Top, ADC
</td>
<td>
Mid, Top, Support
</td>
<td>
Mid, ADC, Jungle
</td>
<td>
Top, Mid, ADC
</td>
</tr>
</table>
<div style="width: 100%">
<button onclick="sound.play()">Randomize</button>
</div>
<audio controls id="sound" style="display: none">
<source src="sound.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>