For some reason my css and html is not showing up on the webpage. It only shows the h1 title of Tic-Tac-Toe. I've written the code out to match what my homework list but I am missing something and I've started over several times and cannot seem to get what I am missing. maybe I'm reading the homework wrong?
h1 {
text-align: center;
}
.top {
padding: 3em;
float: left;
height: 100px;
width: 100px;
border-bottom: 1px black solid;
}
.middle {
float: left;
height: 100px;
width: 100px;
border-top: 1px black solid;
border-bottom: 1px black solid;
}
.center {
float: left;
height: 100px;
width: 100px;
border-top: 1px black solid;
border-bottom: 1px black solid;
border-left: 1px black solid;
border-right: 1px black solid;
}
.bottom {
float: left;
height: 100px;
width: 100px;
border-top: 1px black solid;
}
.row {
clear: both;
width: 302px;
text-align: center;
}
HTML:
<!DOCTYPE html>
<html>
<link rel="stylesheet" href="app.css">
<div id=b oard>
<h1>TicTacToe</h1>
<div class="row 1">
<div class="top left"></div>
<div class="top middle"></div>
<div class="top right"></div>
</div>
<div class="row 2">
<div class="middle left"></div>
<div class=".center"></div>
<div class="middle right"></div>
</div>
<div class="row 3">
<div class="bottom left"></div>
<div class="bottom middle"></div>
<div class="bottom right"></div>
</div>
</div>
</html>