forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
23 lines (21 loc) · 642 Bytes
/
index.html
File metadata and controls
23 lines (21 loc) · 642 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Where's Waldo</title>
<!-- Uncomment the script tag below to enable the use of jQuery in your 'main.js' file -->
<!-- <script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"></script> -->
<script src='src/Waldo.js'></script>
<link rel="stylesheet" href="src/style.css">
</head>
<body>
<div id="board"></div>
<button id="button"></button>
<button id="button2"></button>
<button id="button3"></button>
<script src="src/main.js"></script>
</body>
</html>