JSFiddle - React, Tailwind, and code Playground
HTML
<h1>Brennan's Famous Cookies</h1>
<p>These are the favourite cookies of president obama</p>
<hr />
<a href="#">asda</a>
<input type="color" />
<hr />
<ul>
<li>Go to Store</li>
<li>Buy cookies</li>
<li>Give them to hungry people</li>
</ul>
<hr />
<img src="http://www.reactiongifs.com/wp-content/uploads/2012/08/lazycat.gif"/>
CSS
h1{
color: #ff0000;
}
JavaScript
var name = prompt('What is your name?');
$('h1').text(name+"'s Cookies");
$("input").change(function(){
var color = $(this).val();
$('h1').css('color', color);
});