mirror of
https://github.com/tcsenpai/Spin.git
synced 2025-06-03 18:00:18 +00:00
24 lines
610 B
HTML
24 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<meta charset="UTF-8">
|
|
<!-- !! IMPORTANT !! -->
|
|
<!-- Content-Security-Policy no longer required. Will show warning in devtools. Can be ignored -->
|
|
<!-- <meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline'"> -->
|
|
<title>Spin Engine Demo</title>
|
|
</head>
|
|
<body>
|
|
<h1>Spin Engine Demo</h1>
|
|
<div id="editable">
|
|
|
|
</div>
|
|
|
|
<!-- JS -->
|
|
<script>
|
|
// All the scripts are originated from main, but you can add any other script here
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|