generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
25 lines (25 loc) · 983 Bytes
/
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
<!-- This is the single html page that the application runs within.
Nearly all code is generated and inserted to the DOM through JavaScript -->
<!DOCTYPE html>
<html lang="en-gb">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Javascript memory game">
<meta name="keywords" content="HTML5, CSS3, JavaScript, Memory Game">
<meta name="author" content="Will Griffiths">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<title>Memoria</title>
</head>
<body>
<header>
</header>
<div id="gameArea">
<div id="cardsToMatchArea"></div>
<div id="playerCardsArea"></div>
</div>
<script src="./assets/js/main.js"></script>
</body>
</html>