JSFiddle - React, Tailwind, and code Playground

by enginustun

HTML

<h1> My All Fiddles </h1>

<p>There is some samples about <strong>html, css and javascript,</strong>

    <br/>I hope these helps you.</p>

<h3>HTML samples</h3>

<ul>
    <li> 
        <a href="#" target="_blank">Introduction</a>
    </li>
</ul>

CSS

body {
    font-family:'Segoe UI';
    background:#fefefe;
}
h1 {
    color:#ff3f87;
}
strong {
    color:#285ada;
}
ul {
    margin:-15px 5px 5px 5px;
}
li {
    list-style:square;
}
a {
    text-decoration:none;
    font-weight:bold;
    color:#dd0404;
}
a:hover {
    color:#dddd04;
}