-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
144 lines (140 loc) · 4.91 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+Pro&display=swap" rel="stylesheet">
<title>MyTube</title>
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="pages/collection-1.html">Fame On Fire</a>
<ul>
<li>
<a href="videos/videos-1.html">Smells Like Teen Spirit</a>
</li>
<li>
<a href="videos/videos-2.html">Rockstar</a>
</li>
<li>
<a href="videos/videos-3.html">Misery Business</a>
</li>
<li>
<a href="videos/videos-4.html">Plastic Heart</a>
</li>
<li>
<a href="videos/videos-5.html">Cut Throat</a>
</li>
<li>
<a href="videos/videos-6.html">Ketamine</a>
</li>
</ul>
</li>
<li>
<a href="pages/collection-2.html">O'Keefe Music Foundation</a>
<ul>
<li>
<a href="videos/videos-7.html">The Pot</a>
</li>
<li>
<a href="videos/videos-8.html">46 & 2</a>
</li>
<li>
<a href="videos/videos-9.html">Lateralus</a>
</li>
<li>
<a href="videos/videos-10.html">My Curse</a>
</li>
<li>
<a href="videos/videos-11.html">Her Black Wings</a>
</li>
<li>
<a href="videos/videos-12.html">More Human Than Human</a>
</li>
</ul>
</li>
<li>
<a href="pages/collection-3.html">Our Last Night</a>
<ul>
<li>
<a href="videos/videos-13.html">Oasis</a>
</li>
<li>
<a href="videos/videos-14.html">Bye, Bye, Bye</a>
</li>
<li>
<a href="videos/videos-15.html">Total Eclipse of the Heart</a>
</li>
<li>
<a href="videos/videos-16.html">The Beaten Path</a>
</li>
<li>
<a href="videos/videos-17.html">Losing Sleep</a>
</li>
<li>
<a href="videos/videos-18.html">Let Light Overcome The Darkness</a>
</li>
</ul>
</li>
<li><a href="form.html">New Video</a></li>
</ul>
</nav>
</header>
<hr>
<h1><u>Featured</u></h1>
<hr>
<div id="videos">
<table>
<thead>
<tr>
<th>
<a href="pages/collection-1.html">
<img class="thumbnail-image" width="36" alt="pic-of-fame-on-fire"
src="imgs/fameOnFireLogoPic.jpg">
</a>Fame On Fire,<br />
<a href="videos/videos-1.html">Smells Like Teen Spirit</a>
</th>
<th><a href="pages/collection-2.html">
<img class="thumbnail-image" width="36" alt="pic-of-logo"
src="https://yt3.ggpht.com/ytc/AMLnZu8RCBdWDjEFDFZXG_7Ld0jfTz5qUvzbYZXcrKfxC-g=s68-c-k-c0x00ffffff-no-rj">
</a>O'Keefe Music Foundation,<br /> <a href="videos/videos-7.html"> The Pot</a></th>
<th><a href="pages/collection-3.html">
<img class="thumbnail-image" width="36" alt="pic-of-our-last-night"
src="https://yt3.ggpht.com/ytc/AMLnZu8YVUPXvofsgm2atzH3B8iiz8v_ZX9v05hl7HYWQQ=s88-c-k-c0x00ffffff-no-rj">
</a>Our Last Night, <br /><a href="videos/videos-13.html">Oasis</a></th>
</tr>
</thead>
<tbody>
<tr>
<td class="videos">
<iframe
src="https://www.youtube-nocookie.com/embed/ujhSgLkhrsY?loop=1&cc_load_policy=1&iv_load_policy=3&fs=0&color=white&playlist=ujhSgLkhrsY"
title="Smells Like Teen Spirit - Nirvana (Fame On Fire Cover) *LAST COVER EVER*" frameborder="0"></iframe>
</td>
<td class="videos">
<iframe
src="https://www.youtube-nocookie.com/embed/BFYVgbWTQ5k?loop=1&cc_load_policy=1&iv_load_policy=3&fs=0&color=white&playlist=BFYVgbWTQ5k"
title="The Pot by Tool Version 5 / O'Keefe Music Foundation" frameborder="0"></iframe>
</td>
<td class="videos">
<iframe
src="https://www.youtube-nocookie.com/embed/6WPD8vei3Ak?loop=1&cc_load_policy=1&iv_load_policy=3&fs=0&color=white&playlist=6WPD8vei3Ak"
title="A YouTube video" frameborder="0"></iframe>
</td>
</tr>
</tbody>
</table>
</div>
<hr>
<footer>©: Copyright</footer>
</body>
</html>