JSFiddle - React, Tailwind, and code Playground

HTML

<h1>MyTSC</h1>

  <div id="logo"> 
      <a href="http://www.tsc.edu"><img src="./img/TSCLogo.jpg" alt="TSC"></a>
  </div>


  <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>

CSS

body{
      background-color: grey;
      color: white;
    }
    h1{
      text-align: right;
    margin-bottom: 30px;
    }
    div{
      text-align: center
    }

    ul{
      font-style: italic;
    }

#logo { width: 300px; margin: 0 auto; border-bottom: solid 1px #FFF; }
#logo img { margin-bottom: 30px;}