JSFiddle - React, Tailwind, and code Playground

by agib

HTML

<script src="https://fonts.googleapis.com/css?family=Roboto:400,500,700"></script>
<p class="weight-normal">Normal</p>
<p class="weight-medium">Medium</p>
<p class="weight-bold">Bold</p>

CSS

* {
  font-family: "Roboto";
}
.weight-normal {
  font-weight: normal;
}
.weight-medium {
  font-weight: 500;
}
.weight-bold {
  font-weight: bold;
}