JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<link rel="stylesheet" href="https://rawgit.com/raphaelcruzeiro/jquery-notebook/master/src/js/jquery.notebook.css">
<script src="https://rawgit.com/raphaelcruzeiro/jquery-notebook/master/src/js/jquery.notebook.js"></script>
<div class="my-editor">
Here is my text
</div>
CSS
.my-editor{
margin: 100px 180px 0 180px;
}
JavaScript
$(document).ready(function(){
$('.my-editor').notebook();
});