<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>summernote-lite</title>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.js"></script>
<style type="text/css">
body {
margin: 0 auto;
max-width: 900px;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('.summernote').summernote({
height: 300,
tabsize: 2
});
});
</script>
</head>
<body>
<div style='float:right;'>
<a href='index.html'>Bootstrap 3</a>
/
<a href='bs4.html'>Bootstrap 4</a>
/
<a href="examples/">Example</a>
</div>
<h1>Summernote standalone</h1>
<div class="summernote"></div>
</body>
</html>