-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 1.79 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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="styles.css" />
</head>
<body>
<!-- Start - Splash Animation -->
<div class="splash-screen" id="splashScreen">
<div class="splash-content">
<script
src="https://unpkg.com/@dotlottie/player-component@latest/dist/dotlottie-player.mjs"
type="module"
></script>
<dotlottie-player
src="https://lottie.host/1ddf984b-7523-4baf-9015-a04b667a4030/pCYVGqAZRv.json"
background="transparent"
speed="1.5"
style="width: 400px; height: 400px"
loop
autoplay
></dotlottie-player>
<p style="font-family: cursive; font-size: 1rem">The Creator : Aryan</p>
</div>
</div>
<!-- End - Splash Animation -->
<div class="main-content" id="mainContent">
<!-- Start - Form -->
<div class="login-box">
<h2>Enter</h2>
<form>
<div class="user-box">
<input type="text" id="player1_name" value="Player 1" name="player1_name" required />
<label>Player 1 Name</label>
</div>
<div class="user-box">
<input type="text" id="player2_name" value="Player 2" name="player2_name" required />
<label>Player 2 Name</label>
</div>
<a href="script.js" id="playButton">
<span></span>
<span></span>
<span></span>
<span></span>
Play
</a>
</form>
</div>
<!-- End - Form -->
</div>
<script src="script.js"></script>
</body>
</html>