JSFiddle - React, Tailwind, and code Playground

HTML

<h1>MyTSC</h1>
  <br/>
  <br/>
  <div> 
    <a href="http://www.tsc.edu"><img src="./img/TSCLogo.jpg" alt="not found"></a> 
  </div>
  <br/>
  <br/>
  
  <hr />
  <br/>
  <br/>
  <font>
  <h2>My courses for Fal 2013</h2>
  <ul>
   <li>COSC 4330 Computer Graphics</li>
   <li>IMED 1416 Wed Design I</li>
   <li>ITNW 2413 Networking Hardware</li>
  </ul>
  </font>

CSS

body{
      background-color: grey;
      color: white;
    }
    h1{
      text-align: right;
    }
    div{
      text-align: center
    }
    hr{
      width: 50%;
      height: 1px;
      color: white;
    }
    ul{
      font-style: italic;
    }