forked from JSharsh/DAA3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainmenu.html
More file actions
90 lines (63 loc) · 2.52 KB
/
mainmenu.html
File metadata and controls
90 lines (63 loc) · 2.52 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TTC</title>
<link rel="shortcut icon" href="tic-tac-toe.png" type="image/x-icon"> <!--Adding favicon-->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
crossorigin="anonymous"
/>
<!--Adding Favicon-->
<link rel="shortcut icon" href="favicon.png" type="image/x-icon">
<link rel="stylesheet" href="main.css" type="text/css" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=UA-113861388-2"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "UA-113861388-2");
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <!--To use Google Icons-->
</head>
<body>
<header>
<div class="right">
<!--Menu-->
<div class="pagination">
<a class="active" href="#">Play Game</a>
<button class="btn btn-info" onclick="myFunction()">Dark mode</button>
</div>
</div>
<!--Our website's name-->
<h1>Tic Tac Toe</h1>
</header>
<div class="wrapper bg-white">
<div class="h4 text-muted text-center pt-2 ">Menu</div>
<br>
<div class="center">
<a href="index.html"><button class="button" type="button "><h2>Easy</h2></button></a><br>
<a href="index.html"><button class="button" type="button"><h2>Medium</h2></button></a><br>
<a href="index.html"><button class="button" type="button"><h2>Hard</h2></button></a><br>
</div>
</div>
<!-- <button onclick="myFunction()">Toggle dark mode</button> -->
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
<script src="https://connect.facebook.net/en_US/fbinstant.6.3.js"></script>
<script src="app.js"></script>
</body>
</html>