-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
21 lines (20 loc) · 1.11 KB
/
index.html
File metadata and controls
21 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>SIMPSONS MEMORY GAME</title>
<link rel="shortcut icon" href="images/simpsons.ico" type="image/x-icon">
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap" rel="stylesheet">
</head>
<body>
<div class="content mt-3">
<h2 class="text-info text-center mb-3">SIMPSONS MEMORY GAME</h2>
<h4 class="text-center text-primary">Score: <span id="result">0</span></h4>
<div class="grid"></div>
</div>
<footer> Copyright © <label id="year"></label> | Designed by <a href="https://github.com/FabianCristancho">Fabian Cristancho</a></footer>
<script src="js/script.js"></script>
</body>
</html>