0% found this document useful (0 votes)
30 views

JS Bin

This HTML document contains the basic structure and elements for a tic-tac-toe game. It includes a header tag with an ID of "instruction" to display instructions and a section tag with a class of "tictac" to hold the game board. jQuery is also linked to enable interactive functionality.

Uploaded by

Syed Tabrez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
30 views

JS Bin

This HTML document contains the basic structure and elements for a tic-tac-toe game. It includes a header tag with an ID of "instruction" to display instructions and a section tag with a class of "tictac" to hold the game board. jQuery is also linked to enable interactive functionality.

Uploaded by

Syed Tabrez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as ODT, PDF, TXT or read online on Scribd
You are on page 1/ 1

<!

DOCTYPE html>
<html>
<head>
<script src="//code.jquery.com/jquery-1.9.1.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<h2 id="instruction"></h2>
<section class="tictac">
</section>
</body>
</html>

You might also like