-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathyoutube-videos.html
123 lines (121 loc) · 6.02 KB
/
youtube-videos.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
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/styles/stylesheet.css">
<body>
<div class="main">
<div>
<h1 class="pageTitle"><b>My YouTube Videos</b></h1>
</div>
<br>
<div class="textBox">
<h2>What is this?</h2>
<p>This is simply a page of my youtube videos. I will update the page once for every 3 videos I make (if I remember) so each row is equal in length. The videos featured here are handpicked and determined to be my best. I don't post to YouTube very often so please don't expect new videos very often, and most of them aren't of very much quality. Hopefully, I will find time to upload actually good videos on at least a predictable schedule.</p>
</div>
<div class="contentGrid">
<table>
<thead>
</thead>
<tbody>
<tr>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=2lK7YndO6HE">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/2lK7YndO6HE/maxresdefault.jpg"></img>
<b>Crashes, Stunts, and Drifts pt. 9</b>
<p>12/20/2021</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=MJAvt4xMgk8">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/MJAvt4xMgk8/maxresdefault.jpg"></img>
<b>Crashes, Stunts, and Drifts pt. 10</b>
<p>12/20/2021</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=XmV945Aqv1k">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/XmV945Aqv1k/maxresdefault.jpg"></img>
<b>Wall Ball Announcement Trailer</b>
<p>8/9/2021</p>
</div>
</a>
</td>
</tr>
<tr>
<td>
<a style="text-decoration:none;" href="https://www.youtube.com/watch?v=tN6KoRRgeVg">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/tN6KoRRgeVg/maxresdefault.jpg"></img>
<b>Crashes, Stunts, and Drifts pt. 7</b>
<p>6/23/2021</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=63q3dAM_oSM">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/63q3dAM_oSM/maxresdefault.jpg"></img>
<b>Crashes, Stunts, and Drifts pt. 6</b>
<p>6/22/2023</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=pjBXNnMwK-U">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/pjBXNnMwK-U/maxresdefault.jpg"></img>
<b>Crashes, Stunts and Drifts pt. 5</b>
<p>6/3/2021</p>
</div>
</a>
</td>
</tr>
<tr>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=Y_TIJBcr4z4">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/Y_TIJBcr4z4/maxrefdefault.jpg">
<b>Crashes, Stunts, and Drifts pt. 4</b>
<p>6/23/2021</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=63q3dAM_oSM">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/63q3dAM_oSM/maxresdefault.jpg"></img>
<b>Crashes, Stunts, and Drifts pt. 6</b>
<p>6/22/2023</p>
</div>
</a>
</td>
<td>
<a style="text-decoration: none;" href="https://www.youtube.com/watch?v=pjBXNnMwK-U">
<div class="gridBox">
<img src="https://i.ytimg.com/vi/pjBXNnMwK-U/maxresdefault.jpg"></img>
<b>Crashes, Stunts and Drifts pt. 5</b>
<p>6/3/2021</p>
</div>
</a>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<br>
</div>
<!-- Footer -->
<footer>
<div>
<h4><b>End of page</b></h4>
</div>
</footer>
</body>
</html>