JSFiddle - React, Tailwind, and code Playground
by Malik Naik
HTML
<h1 class="format" id="title">Sam's Game</h1>
<h1 id="you">You <span id="enemy">Opponent</span></h1>
<h1 id="stats">Stats:<span id="theirStats">Stats:</span></h1>
CSS
@CHARSET "ISO-8859-1";
#title {
font-family: Snap ITC, chiller;
font-size: 50px;
color:red;
text-align:center;
}
.format{
background-color:yellow;
margin-left: 480px;
width:360px;
height:60px;
}
#you {
margin-left:150px;
font-family:verdana;
color:blue;
font-size:25px;
}
#enemy{
margin-left:850px;
font-family:verdana;
color:blue;
font-size:25px;
}
#stats{
margin-left: 90px;
font-family: comic;
color:green;
}
#theirStats{
margin-left: 800px;
font-family: comic;
color:green;
}