-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (21 loc) · 563 Bytes
/
index.html
File metadata and controls
24 lines (21 loc) · 563 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
<!DOCTYPE html>
<html>
<head>
<title>OBS Checklist Overlay</title>
<!-- Load jQuery from CDN -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<link rel="stylesheet" type="text/css" href="/style.css">
<script src="/script.js"></script>
</head>
<body>
<div class="title-wrapper">
<div class="left"><span>TASK_LIST_TITLE</span></div>
<div class="right"><span>LIVE</span></div>
</div>
<div class="task-list-wrapper">
<ul class="task-list">
<li>TASK_LIST_ITEM</li>
</ul>
</div>
</body>
</html>