JSFiddle - React, Tailwind, and code Playground
by Bhesh Gurung
HTML
<div id="me">
<img src="Me.JPG" alt="me me me me me" width="450" height="450" alt="picture" align="right"/>
</div>
<button id="send"> show me </button>
JavaScript
$(document).ready(function() {
$('#me').hide();
$('#send').click(function() {
$('#me').show("slow");
});
});