-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (44 loc) · 1.63 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Forest Memory Game</title>
<meta name="description" content="Forest Memory Game">
<meta http-equiv="X-Ua-Compatible" content="IE=edge,chrome=1">
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
<link rel="stylesheet" href="style.css">
</head>
<body onload="shuffle(cards)">
<header>
<h1>Forest Memory Game</h1>
</header>
<main>
<section>
<div class="board">
<div class="card" id="c0"></div>
<div class="card" id="c1"></div>
<div class="card" id="c2"></div>
<div class="card" id="c3"></div>
<div class="card" id="c4"></div>
<div class="card" id="c5"></div>
<div class="card" id="c6"></div>
<div class="card" id="c7"></div>
<div class="card" id="c8"></div>
<div class="card" id="c9"></div>
<div class="card" id="c10"></div>
<div class="card" id="c11"></div>
<div class="score">Turn counter: 0</div>
</div>
</section>
</main>
<script src="jquery-3.5.0.min.js"></script>
<script src="memory.js"></script>
<!--- https://pl.123rf.com/zdjecia-seryjne/borsuk.html?sti=m06wexa9yt8zgm9q0s| -->
<!--- https://kobieta.interia.pl/zycie-i-styl/news-dzik-lesny-ludojad,nId,3357603-->
<!--- https://www.polityka.pl/tygodnikpolityka/nauka/1584361,1,kontrowersje-wokol-lisa.read -->
<!--- https://www.reo.pl/ciekawostki-o-jezach/ -->
<!--- https://www.ekologia.pl/srodowisko/przyroda/wiewiorka-pospolita-opis-wystepowanie-i-zdjecia-zwierze-wiewiorka-pospolita-ciekawostki,19952.html-->
<!--- https://wirtualnyregion.pl/kto-powinien-zajac-sie-sarna/ -->
<!-- https://pxhere.com/pl/photo/694269-->
</body>
</html>