Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Ajayendra2705 authored Jun 11, 2024
1 parent d86a817 commit bd39af6
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions Tic-Tac-Toe Game/index1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic-Tac-Toe</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<div class="navbar">
<div id="logo_area">
<img src="tic-tac-toe-logo.png" id="logo">
</div>

<div class="area" id="nav">
<h1 id="text">
Tic-Tac-Toe
</h1>
</div>
</div>

<div class="textbar">
<div class="area" id="text_text">
<h1 id="new_text">
Get 3 in a Row to Win
</h1>
</div>
</div>

<div id="next_area">
<div id="board">
<div class="square" id="square0"></div>
<div class="square" id="square1"></div>
<div class="square" id="square2"></div>
<div class="square" id="square3"></div>
<div class="square" id="square4"></div>
<div class="square" id="square5"></div>
<div class="square" id="square6"></div>
<div class="square" id="square7"></div>
<div class="square" id="square8"></div>
</div>
</div>

<div class="bottom">
<div class="bottom_area" id="bottom_text">
<h1 id="bottom_text_final">
Made by Ajayendra
</h1>
</div>
</div>
<script src="script1.js"></script>

</body>
</html>

0 comments on commit bd39af6

Please sign in to comment.