diff --git a/OmPrakash025/index.html b/OmPrakash025/index.html new file mode 100644 index 0000000..4fe1511 --- /dev/null +++ b/OmPrakash025/index.html @@ -0,0 +1,537 @@ + +z + + + + + + +Tic Tac Toe - HTML and Javascript + + + + + + + + +
+

Tic Tac Toe

+ + + + + +
+

Choose your name and color to play with

+

+ Player-1 + + +

+

+ Player-2 + + +

+

+ +

+

+ + +

+

+ Add New : + +

+
+ +
+

Game Records

+
+ +
+ Tic Tac Toe - HTML and Javascript | Cyber Group +
+ + + + + \ No newline at end of file diff --git a/OmPrakash025/ticTac.css b/OmPrakash025/ticTac.css new file mode 100644 index 0000000..c12f50f --- /dev/null +++ b/OmPrakash025/ticTac.css @@ -0,0 +1,62 @@ +*{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} + +select { + padding:3px; + margin: 10; + -webkit-border-radius:0px; + -moz-border-radius:4px; + border-radius:4px; + -webkit-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset; + -moz-box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset; + box-shadow: 0 3px 0 #ccc, 0 -1px #fff inset; + background: #f8f8f8; + color:#888; + border:none; + outline:none; + display: inline-block; + -webkit-appearance:none; + -moz-appearance:none; + appearance:none; + cursor:pointer; + width:100px; +} + + +.minContainer { + padding: 100px; + padding-right: 30px; + position: static; +} + +table { + border-collapse:collapse; + table-layout: fixed; + border-spacing: 0; +} +.td { + border: 2px solid #000000; + font-size:20px; + /** font-family:"Helvetica Neue", Helvetica, Arial, sans-serif; **/ + color:#000000; + line-height: 1.428571429; + width: 30px; + height: 32px; + min-width: 80px; + max-width: 80px; + min-height: 80px; + max-height: 80px; + text-align: center; +} + +.X{ + background-color: #f5ae70; +} + +.O{ + background-color: #66ff66; +} + \ No newline at end of file