JSFiddle - React, Tailwind, and code Playground

by igalst

HTML

<header>אני header</header>

<section>אני section</section>
<aside>אני sidebar</aside>
    
<footer>אני footer</footer>

CSS

body {
    direction: rtl;
    font-family: arial;
}

header {
    background: #FED;
}

footer {
    background: #BED;
}

section {
    background: #DAD;
}

aside {
    background: #BAD;
}