rich_editor/assets/editor/editor.html

19 lines
676 B
HTML
Raw Permalink Normal View History

2021-05-27 05:42:34 +07:00
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="platform_style.css">
</head>
<body>
2021-05-30 04:36:44 +07:00
<div id="editor" contenteditable="true" tabindex="0"></div>
2021-05-27 05:42:34 +07:00
<script type="text/javascript" src="interact.min.js"></script>
<script type="text/javascript" src="rich_text_editor.js"></script>
</body>
</html>