JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Lato&family=Roboto&family=Source+Sans+Pro&display=swap" rel="stylesheet">
  <style>
    .source-sans-pro {
      font-family: "Source Sans Pro", sans-serif;
    }
    
    .lato {
      font-family: "Lato", sans-serif;
    }
    
    .roboto {
      font-family: "Roboto", sans-serif;
    }
  </style>
</head>
<body>
  <h1 class="source-sans-pro">Source Sans Pro</h1>
  <h2 class="lato">Lato </h2>
  <h2 class="roboto">Roboto</h2>
</body>
</html>