JSFiddle - React, Tailwind, and code Playground
by Blanca B
HTML
<h1>Yo soy el primer elemento</h1>
<h2>Yo soy el segundo elemento</h1>
<h3>Yo el tercero</h3>
<h4>Yo el cuarto</h4>
<p>Yo el quinto</p>
<blockquote>"Y yo soy el sexto"</blockquote>
CSS
h1 {
color: #F8B3B3;
}
h2 {
color: #92CDD7;
}
h3 {
color: #4285F4;
}
h4 {
color: #E94335;
}
p {
color: #FBBC05;
}
blockquote {
color: #34A953;
}