JSFiddle - React, Tailwind, and code Playground

by totoromaum

HTML

<!DOCTYPE html>
<html>
<head>
 <title>Playing with the __________</title>
</head>
<body>
 <h1></h1>
 <script src="https://code.jquery.com/jquery-2.1.0.js"></script>
 <script>
 $("body").append("<p>This is a new paragraph</p>");
 for (var i = 0; i < 9; i++) {
 var hobby = prompt("Tell me one of your hobbies!");
 $("body").append("<p>" + hobby + "</p>");
}
 </script>
</body>
</html>