JSFiddle - React, Tailwind, and code Playground

by Mark Ulybkin

JavaScript

var butt = document.createElement('a');
  butt.className = "button";
  butt.href = "/";
  butt.innerHTML = "Нажми меня";  

  butt.style.MozBorderRadius = '8px';
  butt.style.WebkitBorderRadius = '8px';
  butt.style.borderRadius = '8px';
  butt.style.border = '2px groove green';

  butt.style.display = 'block';
  butt.style.height = '30px';
  butt.style.lineHeight = '30px';
  butt.style.width = '100px';

  butt.style.textDecoration = 'none';
  butt.style.textAlign = 'center';
  butt.style.color = 'red';
  butt.style.fontWeight = 'bold';
  

  document.body.appendChild(butt);