JSFiddle - React, Tailwind, and code Playground
by Artem
CSS
:root {
--bgc: hotpink;
}
body {
background-color: var(--bgc);
}
JavaScript
'use strict';
const title = 'ifeature.net';
const href = 'https://ifeature.net';
const link = title.link(href);
document.body.innerHTML = link;