<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8">

  <title>Jules.tv</title>
  <meta name="description" content="Jules.tv">
  <meta name="author" content="Jules">
  <meta name="viewport" content="width=device-width, initial-scale=1">

  <style>
    @font-face {
      font-family: 'ArialNarrow';
      src: url(./fonts/Arial-Narrow.woff) format("woff");
      font-style: normal;
    }

    body {
      -webkit-text-size-adjust: 100%;
      font-size: 17px;
      background: rgb(19,0,248); 
      text-align: center; 
      font-family: 'Times New Roman', Times, serif; 
      letter-spacing: 2px; 
      padding: 100px; 
      color: #fff;
    }
    h1, h2, h3, h4, h5 {
      font-weight: 400;
    }
    h3 {
      font-size: 1.3em;
    }
    a {
      color: inherit; /* blue colors for links too */
      text-decoration: inherit; /* no underline */
    }   
    #see {
      font-family: 'ArialNarrow', Arial, sans-serif;
      font-size: .85em;
      letter-spacing: .22em;
    }
  </style>
</head>

<body>
    <h3><i>Welcome to Jules.tv</i></h3>
    <br />
    <h2 id="face" style="transform: rotate(90deg);">: )</h2>
    <br />
    <h5 id="see">THANKS FOR TUNING IN</h5>
</body>
<script>
  var face = document.getElementById('face');
  setInterval(flash, 500);

  function flash()
  {
    if (face.innerHTML === ": )") {
      face.innerHTML = ": ("
    } else {
      face.innerHTML = ": )"
    }
  }
</script>

</html>
