JSFiddle - React, Tailwind, and code Playground

by icntfan

HTML

<!DOCTYPE html>
<html>
<head>
  <style>
  body { font-size: 10px; font-family: Arial; } 
  h1, h2 { margin: 13px; font-size: 16px;}
  </style>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
  <h1>Başlık 1</h1>

  <p>İçerik 1</p>
  <h2>Başlık 2</h2>
  <p>İçerik 2</p>
<script>$(":header").css({ background:'#CCC', color:'blue' });</script>

</body>
</html>