-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (49 loc) · 2.74 KB
/
index.html
File metadata and controls
54 lines (49 loc) · 2.74 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Customized - A Scratch 3.0 Paint Editor Mod</title>
<link rel="icon" href="https://scratch.mit.edu/favicon.ico" />
<meta property="og:title" content="Customized">
<meta property="og:description" content="A Scratch 3.0 Paint Editor Mod, best for designing!">
<!-- Insert custom editor fonts here: -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Style+Script&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Cedarville+Cursive&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Monoton&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comic+Neue&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Inter&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@300&display=swap" rel="stylesheet">
<!-- Styling ;) -->
<link rel="stylesheet" href="new.css" />
<link rel="stylesheet" href="modal.css" />
</head>
<body>
<!-- The Modal -->
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
<h2>Thanks for using!</h2>
<p>Thank you for using our paint editor. If you used a pre-made asset from the library, please remember to give credit to our website :)</p>
</div>
</div>
<script type="text/javascript" src="costumes.js"></script>
<script type="text/javascript" src="lib.js"></script>
<script type="text/javascript" src="playground.js"></script>
<script type="text/javascript" src="themes.js"></script>
<script type="text/javascript" src="bigger-icons.js"></script>
<script type="text/javascript" src="swatches.js"></script>
<script type="text/javascript" src="upload-download.js"></script>
<script type="text/javascript" src="settings.js"></script>
<script type="text/javascript" src="bigger.js"></script>
<script type="text/javascript" src="modal.js"></script>
</body>
</html>