Skip to content

Instantly share code, notes, and snippets.

@DeCarabas
Created June 19, 2020 22:45
Show Gist options
  • Save DeCarabas/e3425f4bfcda189972196055633094f1 to your computer and use it in GitHub Desktop.
Save DeCarabas/e3425f4bfcda189972196055633094f1 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<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">
<title>Hello!</title>
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="https://prosemirror.net/css/editor.css">
<link rel="stylesheet" href="/style.css">
<!-- import the webpage's javascript file -->
<script src="/script.js" defer type="module"></script>
</head>
<body>
<div id="editor"></div>
<div id="content" style="display: none">
</div>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<script src="https://button.glitch.me/button.js" defer></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment