JSFiddle - React, Tailwind, and code Playground

by francisstalin

HTML

<h1> Welcome to My Website! </h1>

    <p id="name"> My name is William Shakespeare.</p>
    <p id="school"> I attend Hogwarts.</p>
    <p id="email"> My email is <a href="mailto:[email protected]"> [email protected]. </a> </p>

CSS

h1 {
    color: blue;
    text-align: center  }

p {
    font-family: Arial, Calibri, sans-serif; 
    background-color: light blue; }

#name {
    color: blue; }

#school {
    color: green; }

#email {
    color: red; }