-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_captions.html
More file actions
34 lines (33 loc) · 918 Bytes
/
create_captions.html
File metadata and controls
34 lines (33 loc) · 918 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Create Captions </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://stevenlevithan.com/assets/misc/date.format.js"></script>
<script src=captions.js></script>
<style>
@media print {
p {page-break-after: always;}
}
td {
font-size: 34px;
}
table, th, td {
border: 1px solid black;
}
.wrapper {
max-width: 1000px;
margin: 0 20px;
display: grid;
grid-gap: 10px;
}
</style>
</head>
<body>
<pre><span id=wrapper></span>
</pre>
</body>
</html>