Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions gaurav_024/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<html>
<head>

<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="log.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">

</head>

<body>
<table id="mainboard" class="hidden">
<tr class="row">
<td id="c00"></td>
<td id="c01"></td>
<td id="c02"></td>
</tr>
<tr class="row">
<td id="c10"></td>
<td id="c11"></td>
<td id="c12"></td>
</tr>
<tr class="row">
<td id="c20"></td>
<td id="c21"></td>
<td id="c22"></td>
</tr>
</table>
<br>
<br>
<div id="final-screen" class="hidden">
<div id="winner"></div>
<br>
</div>
</body>
</html>
Empty file added gaurav_024/log.js
Empty file.
7 changes: 7 additions & 0 deletions gaurav_024/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
* {margin: 0; padding: 0; }
table { border-collapse: collapse; border-spacing: 0; }

#board { padding: 0px; margin: 0 auto; margin-top: 25px; }
#board tr td { width: 80px; height: 80px; border: 1px solid #1c1c1c;
font-family: Helvetica; text-align: center; font-size: 30px; }
#board tr td:hover { background: #e4e4e4; cursor: pointer; }