JSFiddle - React, Tailwind, and code Playground

by marianico2

HTML

<h1>Hola carla</h1>
<h2>Esto es una prueba</h2>

CSS

@import url(http://fonts.googleapis.com/css?family=Lato:100,900);

body{
    font-family: lato;
    text-align:center;
}

h1{
    font-weight: 900;
    text-transform: uppercase;
    font-size: 70px;
    margin-bottom: 30px;
}

h2{
    font-weight: 100;
    font-size: 20px;
}