-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
216 lines (199 loc) · 6.01 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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Archive TV</title>
<meta
name="description"
content="Archive TV lets you explore the video library of Internet Archive, one random video at a time."
/>
<meta
name="keywords"
content="TV, streaming, films, free TV, Internet Archive"
/>
<meta name="author" content="Lukas Strociak" />
<meta property="og:locale" content="en_US" />
<meta property="og:title" content="Archive TV" />
<meta
property="og:description"
content="Archive TV lets you explore the video library of Internet Archive, one random video at a time."
/>
<meta
property="og:image"
content="https://archivetv.online/img/project_preview.jpeg"
/>
<meta
property="og:image:alt"
content="Preview of Archive TV playing a random video"
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://archivetv.online" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<link
rel="preload"
href="/fonts/Lack/Lack-Regular.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<link
rel="preload"
href="/fonts/Karrik/Karrik-Regular.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<script src="script/main.js" defer></script>
<script src="video-js-7.9.7/video.min.js"></script>
<link rel="stylesheet" href="video-js-7.9.7/video-js.min.css" />
<link rel="stylesheet" href="/css/video-js.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<article class="welcome__container" id="welcomeContainer">
<section class="welcome__box">
<h1 class="welcome__header">Welcome to Archive TV</h1>
<p class="welcome__text">
This website lets you explore the huge library of Internet Archive,
one random video at a time.<br /><br />May your journey be
surprising...
</p>
<button
class="btn btn--start"
id="startButton"
aria-label="Start watching"
title="Start watching"
>
START WATCHING
</button>
</section>
</article>
<article class="loading__container" id="loadingContainer">
<p class="loading__symbol">↻</p>
<p class="loading__text">Loading...</p>
</article>
<nav class="navigation">
<button
id="reloadButton"
class="btn btn--reload"
aria-label="Load new video"
title="Load new video"
>
↻
</button>
</nav>
<main>
<section class="title__container">
<span class="title__label">Now playing:</span>
<span
id="titleText"
class="title__text"
aria-label="Video title"
></span>
</section>
<article class="player__container">
<video class="video-js vjs-matrix" playsinline></video>
</article>
<article class="metadata__container">
<section id="descriptionMetadata"></section>
<section id="yearMetadata"></section>
<section class="metadata__source-section">
<p class="metadata__label" id="sourceHeader">source:</p>
<span>
<a
href=""
target="blank"
id="sourceText"
rel="noopener norefferer"
title="Video source page on Internet Archive. Opens in new tab."
></a>
</span>
</section>
</article>
</main>
<footer>
<article class="footer__content">
<section>
powered by<br />
<a
href="https://archive.org"
target="blank"
class="footer__link"
rel="noopener norefferer"
title="Internet Archive. Opens in new tab."
>
Internet Archive
</a>
</section>
<section class="footer__credits">
<p class="footer__developerinfo">
code & design by
<a
href="https://github.com/luk-str"
target="blank"
title="Developer's website. Opens in new tab"
rel="noopener norefferer"
class="footer__link"
>Lukas Strociak</a
>
</p>
<p class="footer__fontinfo">
fonts by
<a
href="http://www.adrienmidzic.fr/"
target="blank"
title="Font designer Adrien Midzic's website. Opens in new tab"
rel="noopener norefferer"
class="footer__link"
>Adrien Midzic</a
>,
<a
href="http://phantom-foundry.com/"
target="blank"
title="Font designer Jean-Baptiste Morizot's website. Opens in new tab"
rel="noopener norefferer"
class="footer__link"
>Jean-Baptiste Morizot</a
>
&
<a
href="https://lucaslebihan.fr/"
target="blank"
title="Font designer Lucas Lebihan's website. Opens in new tab"
rel="noopener norefferer"
class="footer__link"
>Lucas Le Bihan</a
>
/
<a
href="https://www.velvetyne.fr"
target="blank"
title="Velvetyne Type Foundry. Opens in new tab"
rel="noopener norefferer"
class="footer__link"
>Velvetyne Type Foundry</a
>
</p>
</section>
</article>
</footer>
</body>
</html>