JSFiddle - React, Tailwind, and code Playground

by Angeli Schwartz

HTML

<h3 class = "centered">Hello, checkout my school! <a href=
  ->"http://www.dce.harvard.edu/" id="redirect">
  ->my school's website</a>.
    </h3>

CSS

body {
  color: blue;
}

JavaScript

function(initAll) {
  document.getElementById("redirect");
  onclick = initRedirect;
  
}
function initRedirect() {
  alert("We are not responsible for the content of pages outside our site");
  window.location = this;
  return false;
}