JSFiddle - React, Tailwind, and code Playground

by hmadrid75

HTML

<div id="principal">
<a href="https://google.com"> ir a google</a>
</div>





<h1>
Bienvenidos
</h1>

<p id="bajada"
class= "texto">
Éste es mi hermoso sitio
</p>

<p class= "texto">
Éste es mi hermoso sitio
</p>


<img src="https://estaticos.muyinteresante.es/media/cache/760x570_thumb/uploads/images/article/5536592a70a1ae8d775df846/dia-del-mono.jpg"/>

CSS

div#principal 


a{
  color: blue;
}


h1{
  color: red;
}

p#bajada {
  color: orange;
}

p.texto {
  text-transform: uppercase;
}

img{
  width: 100%;
}