-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 2.6 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
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<title>Home page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Varela+Round&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<br>
<center>
<div class="heading">
<h1 class="text-center">Tic Tac Toe</h1>
<img src="images/tic-tac-toe.png" id="tictactoe">
</div>
</center>
<div class="row">
<div class="mode">
<div class="top_part text-center" style="padding-top: 10px;">
<img src="images/user.png" width="80">
<h3>Vs Human</h3>
</div>
<div class="bottom_part text-center">
<p>In this mode you can play with your friends...Let's see who has more wit to win this game ;) </p>
<a href="Human.html"><button type="button" class="btn btn-outline-success">Play</button></a>
</div>
</div>
<div class="mode">
<div class="top_part text-center">
<img src="images/tower-pc.png" width="90">
<h3>Vs Computer</h3>
</div>
<div class="bottom_part text-center">
<p id="comp">This mode gives you a chance to play against computer...But I must tell you that you cannot defeat it..Don't believe it than just give it a try ;) </p>
<a href="AI.html"><button type="button" class="btn btn-outline-success">Play</button></a>
</div>
</div>
</div>
<ul>
<a href="https://www.facebook.com/kkvanonymous/" target="_blank"><li type="none" class="icon"><img src="images/facebook.png" width="30" class="i"></li></a>
<a href="https://www.instagram.com/kunal_kumar_verma.io/" target="_blank"> <li type="none" class="icon"> <img src="images/instagram.png" width="30" class="i" id="instagram"></li></a>
<a href="https://github.com/KKVANONYMOUS/Tic-Tac-Toe-2.0" target="_blank">
<li type="none" class="icon"><img src="images/cat.png" width="31" class="i"></li>
</a>
</ul>
<center><p class="copyright"> © Kunal Kumar Verma</p></center>
</div>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
</body>
</html>