-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 899 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="./puzzle.js"></script>
<link rel="stylesheet" href="index.css">
<title>Demopuzzle</title>
</head>
<body>
<header id="demoheader">
<h1>Demopuzzle</h1>
</header>
<div id="puzzle"></div>
<footer id="demofooter">
<a href="#">AGB</a>
<a href="#">Impressum</a>
<a href="#">Datenschutz</a>
</footer>
</body>
<script defer>
//let svgVar = new Puzzle(2, 5, 0.005, './carinanebel.png');
// let svgVar = new Puzzle(0, 5, 0.005, './stephans-quintett.jpg');
let svgVar = new Puzzle(0, 6, 0.005, './puzzle.png');
//let svgVar = new Puzzle(0, 5, 0.005, 'https://stsci-opo.org/STScI-01G7DAAQBRZBGNHVN35FVCQWKQ.png');
</script>
</html>