-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgra.html
More file actions
47 lines (28 loc) · 1 KB
/
Copy pathgra.html
File metadata and controls
47 lines (28 loc) · 1 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="utf-8">
<title>Tarot Memory Test</title>
<meta name="description" content="JS Memory Game inspired by Tarot">
<meta name="keywords" content="javascript, jQuery, game, gwent, memory">
<meta name="author" content="Raf">
<meta http-equiv="X-Ua-Compatible" content="IE=edge,chrome=1">
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Lobster&subset=latin-ext" rel="stylesheet">
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
<![endif]-->
</head>
<body>
<header>
<h1> Tarot Memory Test </h1>
<p> Inspired by <a href="https://www.darktarot.com/tarot_cards/" target="_blank">The Dark Tarot</a></p>
<main>
<article>
<div class="board" id="board2">
</article>
</main>
<script src="jquery-3.4.1.min.js"></script>
<script src="memory.js"></script>
</body>
</html>