-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·128 lines (106 loc) · 5.52 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Pay Per View</title>
</head>
<body>
<div id="topvid">
<iframe width="700" height="400" src="https://www.youtube.com/embed/IWfEcckWtB8" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</div>
<table class="table">
<thead>
<th class="head" id="date" colspan="2"></th>
<th class="head" colspan="2">3:00pm</th>
<th class="head" colspan="2">3:30pm</th>
<th class="head" colspan="2">4:00pm</th>
</thead>
<tbody>
<tr>
<th colspan="2">THRASHER </th>
<td id="thrasher" colspan="6">"Revolutions on Granite" Ukraine Skate Documentary</td>
</tr>
<tr>
<th colspan="2">VANS</th>
<td id ="halfcab" colspan="3">30 Years of Half Cab | Blue Tile Lounge</td>
<td id="elles" colspan="3">Elles - Official Trailer | Snow</td>
</tr>
<tr>
<th colspan="2">NEW BALANCE</th>
<td id="jordan" colspan="6">Jordan Taylor NM255 GTK</td>
</tr>
<tr>
<th colspan="2">STONE ISLAND</th>
<td id="modern" colspan="3">Modern Alchemy</td>
<td id="safari" colspan="3">SAFARI</td>
</tr>
<tr>
<th colspan="2">CONVERSE </th>
<td id="alexis" colspan="6">One Star Pro Alexis Sablone</td>
</tr>
<tr>
<th colspan="2">TYPE 7</th>
<td id="type71" colspan="2">Daniel Arsham</td>
<td id="type72" colspan="2">Ty Evans</td>
<td id="type73" colspan="2">Devon Turnbull</td>
</tr>
<tr>
<th colspan="2">DOCUMENTARY </th>
<td id="fwiw" colspan="6">For What It's Worth</td>
</tr>
<tr>
<th colspan="2">DIME MTL </th>
<td id="glory" colspan="6">Glory Challenge</td>
</tr>
<tr>
<th colspan="2">ONLY NY </th>
<td id="onlyny" colspan="6">Gathering Growth</td>
</tr>
<tr>
<th colspan="2">REEBOK</th>
<td id="revenge" colspan="3">Bronze56K Revenge</td>
<td id="iverson" colspan="3">Bronze56K The Answer</td>
</tr>
<tr>
<th colspan="2">KOHLER </th>
<td id="kohler" colspan="6">Daniel Arsham</td>
</tr>
<tr>
<th colspan="2">CRAILTAP</th>
<td id="crailtap" colspan="6">"Little Wins" Lee Smith for Chocolate Skateboards</td>
</tr>
<tr>
<th colspan="2">SLOWTIDE </th>
<td id="slowtide" colspan="6">A Maine Point Of View</td>
</tr>
<tr>
<th colspan="2">PUSS PUSS MAGAZINE </th>
<td id="freja" colspan="6">Freja</td>
</tr>
<tr>
<th colspan="2">CHRISTIE NY </th>
<td id="csc" colspan="6">Chinatown Soccer Club</td>
</tr>
<tr>
<th colspan="2">PEP KIM</th>
<td id="untrans" colspan="3">Untranslatable</td>
<td id="loveis" colspan="3">Love Is</td>
</tr>
<tr>
<th colspan="2">ONTO</th>
<td id="onto" colspan="6">Leon Washere</td>
</tr>
<tr>
<th colspan="2">MELLOW </th>
<td id="mellow" colspan="6">Gorey: Quit Staring At Me</td>
</tr>
</tbody>
</table>
<div class="display">
</div>
<script src="main.js"></script>
</body>
</html>