-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
26 lines (26 loc) · 1.45 KB
/
upload.html
File metadata and controls
26 lines (26 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CarrotScript File Generator</title>
<link rel="shortcut icon" type="image/jpg" href="favicon.png"/>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<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=Source+Sans+Pro&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/570e7065ed.js" crossorigin="anonymous"></script>
<script src="https://carrotscript.github.io/example.js"></script>
<script src="https://carrotscript.github.io/plugin.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/eligrey/FileSaver.js/5ed507ef8aa53d8ecfea96d96bc7214cd2476fd2/FileSaver.min.js"></script>
</head>
<body>
<h1><img src="logo_transparent.png" width="200"></h1>
<h1>CarrotScript File Generator</h1>
<p>Using this, you can create your CarrotScript files and run them in your project!</p>
<textarea rows="10" id="data"></textarea><br>
<button class="btn" id="down">Download</button>
<script src="https://carrotscript.github.io/tryit/file.js"></script>
</body>
</html>