JSFiddle - React, Tailwind, and code Playground

by tonkec palonkec

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    p {
      font-size: 90px;
      background-color: orange;
      font-weight: bold;
      font-style: italic;
      text-decoration: underline;
    }
  </style>
</head>
<body>
  <p>Welcome to CSS</p>
</body>
</html>