JSFiddle - React, Tailwind, and code Playground
HTML
<html>
<head>
<title>Red dot</title>
</head>
<body>
<div id="container"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script>
var paper = Raphael("container", 200, 200);
var dot = paper.circle(50, 80, 40).attr("fill", "#FF0000").attr("stroke", "#000099").attr("stroke-width", 1);
</script>
</body>
</html>