mirror of
https://github.com/FranP-code/Tic-Tac-Toe-Game.git
synced 2025-10-12 23:52:39 +00:00
player selection fstyles done
This commit is contained in:
41
index.html
41
index.html
@@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Tic tac toe</title>
|
||||
<link rel="stylesheet" href="./styles/styles.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"/>
|
||||
<script type="module" src="https://cdn.jsdelivr.net/npm/emoji-picker-element@^1/index.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="player-selection">
|
||||
<h1>Player selection</h1>
|
||||
<form>
|
||||
<div class="player player-1">
|
||||
<input class="name-input" type="text" placeholder="Player 1 name">
|
||||
|
||||
<div class="symbol-container">
|
||||
<button>😁</button>
|
||||
<input class="symbol-input" type="text" placeholder="Symbol" maxlength="1">
|
||||
</div>
|
||||
</div>
|
||||
<div class="player player-2">
|
||||
<input class="name-input" type="text" placeholder="Player 2 name">
|
||||
|
||||
<div class="symbol-container">
|
||||
<input class="symbol-input" type="text" placeholder="Symbol" maxlength="1">
|
||||
<button>😁</button>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<button id="start">Start</button>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="emoji-picker-container hidden">
|
||||
<emoji-picker class="animate__animated animate__fadeInUp"></emoji-picker>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user