JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<title>ColorBox - jQuery Plugin</title>
<link href="http://www.jacklmoore.com/colorbox/example1/colorbox.css" rel="stylesheet" type="text/css" />
<script src="http://www.javascript-coder.com/files/jquery-popup/modal-popup/jquery.colorbox-min.js"></script>
<script>
$(document).ready(function() {
$.colorbox({html: '<h1>Her er en title</h1>'});
});
</script>
</head>
<body>
</body>
</html>