My first Free Code Camp Zipline
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Document</title> | |
</head> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<main> | |
<div class="container"> | |
<h1>Tic Tac Toe</h1> | |
<p>Choose your marker and opponent to begin</p> | |
<!-- THIS SHOULD BE ANIMATED --> | |
<div class="player-start"> | |
<div id="player-select-container"> | |
<h3>Choose marker</h3> | |
<button class="js-player-select playerX" id="player-X" value="X">X</button> |