Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
Ultimate_TicTacToe
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kunal Shah
Ultimate_TicTacToe
Commits
a82ddb43
Commit
a82ddb43
authored
8 years ago
by
Pareek Ravi
Browse files
Options
Downloads
Patches
Plain Diff
Initial drawing of board
parent
c1be0dfe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/format.css
+40
-0
40 additions, 0 deletions
src/format.css
src/index.html
+198
-0
198 additions, 0 deletions
src/index.html
with
238 additions
and
0 deletions
src/format.css
0 → 100644
+
40
−
0
View file @
a82ddb43
table
.fullBoard
{
/*border: 1px solid black;*/
}
table
.smallBoard
{
/*border: 5px solid blue;*/
background
:
gray
;
}
tr
.cell
td
{
/*border: 1px solid black;*/
}
.square
{
width
:
50px
;
height
:
50px
;
}
.v
{
border-left
:
1px
solid
#000
;
border-right
:
1px
solid
#000
;
}
.h
{
border-top
:
1px
solid
#000
;
border-bottom
:
1px
solid
#000
;
}
.bigSquare
{
width
:
150px
;
height
:
150px
;
}
.vert
{
border-left
:
5px
solid
#000
;
border-right
:
5px
solid
#000
;
}
.hor
{
border-top
:
5px
solid
#000
;
border-bottom
:
5px
solid
#000
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/index.html
0 → 100644
+
198
−
0
View file @
a82ddb43
<h1>
Ultimate Tic-Tac-Toe
</h1>
<head>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"format.css"
>
</head>
<br>
<br>
<table
class=
"fullBoard"
>
<!-- row1 -->
<tr
class=
"innerBoard"
>
<!-- col 1 -->
<td
class=
"bigSquare"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 2 -->
<td
class=
"bigSquare vert"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 3 -->
<td
class=
"bigSquare"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- row 2 -->
</tr>
<tr
class=
"innerBoard"
>
<!-- col 1 -->
<td
class=
"bigSquare hor"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 2 -->
<td
class=
"bigSquare vert hor"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 3 -->
<td
class=
"bigSquare hor"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
</tr>
<!-- row 3 -->
<tr
class=
"innerBoard"
>
<!-- col 1 -->
<td
class=
"bigSquare"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 2 -->
<td
class=
"bigSquare vert"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
<!-- col 3 -->
<td
class=
"bigSquare"
>
<table
class=
"smallBoard"
>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 00
</td>
<td
class=
"square v"
>
Cell: A - 01
</td>
<td
class=
"square"
>
Cell: A - 02
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square h"
>
Cell: A - 10
</td>
<td
class=
"square v h"
>
Cell: A - 11
</td>
<td
class=
"square h"
>
Cell: A - 12
</td>
</tr>
<tr
class=
"cell"
>
<td
class=
"square"
>
Cell: A - 20
</td>
<td
class=
"square v"
>
Cell: A - 21
</td>
<td
class=
"square"
>
Cell: A - 22
</td>
</tr>
</table>
</td>
</tr>
</table>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment