JSFiddle - React, Tailwind, and code Playground

by judy931490judy

HTML

<!DOCTYPE html>
<html>

  <head>
    <style>
      p.two {
        border-style: solid;
        border-width: 0px 0px 0px 9.1px;
        border-color: #FF3333;
        padding: 3px;
        padding-left: 8px;
      }

      a.one {
        font-size: 20px;
        color: black;
        font-family: 微軟正黑體;
      }

      a.one:link {
        color: black;
        background-color: transparent;
        text-decoration: none;
      }

      a.one:visited {
        color: black;
        background-color: transparent;
        text-decoration: none;
      }

      a.one:hover {
        color: black;
        background-color: transparent;
        text-decoration: underline;
      }

      a.one:active {
        color: black;
        background-color: transparent;
        text-decoration: underline;
      }

      a.two {
        font-size: 20px;
        color: red;
        font-family: 微軟正黑體;
      }

      a.two:link {
        color: red;
        background-color: transparent;
        text-decoration: none;
      }

      a.two:visited {
        color: red;
        background-color: transparent;
        text-decoration: none;
      }

      a.two:hover {
        color: red;
        background-color: transparent;
        text-decoration: underline;
      }

      a.two:active {
        color: red;
        background-color: transparent;
        text-decoration: underline;
      }

      a.three {
        background-color: transparent;
        font-size: 20px;
        color: black;
        font-family: 微軟正黑體;
        padding: 4px 10px;
        border: 1px solid;
        border-radius: 4px;
      }

      a.three:link {
        background-color: transparent;
        color: black;
        font-size: 20px;
        font-family: 微軟正黑體;
        padding: 4px 10px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        border: 1px solid black;
        border-radius: 4px;
      }

      a.three:visited {
        background-color:...