generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
76 lines (66 loc) · 3.02 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Meta tags for search engines -->
<meta name="description"
content="Game memory,puzzle with art, puzzles for artist, sell your artwork, game with artwork, game for wasting time">
<meta name="keywords" content="game, puzzle, art-puzzle, puzzles memory, art-memory, play-game, fun-games">
<!-- Title -->
<title>Art of Memory</title>
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="assets/images/favicon/favicon180.jpg">
<link rel="icon" type="image/png" sizes="32x32" href="assets/images/favicon/favicon32.jpg">
<link rel="icon" type="image/png" sizes="16x16" href="assets/images/favicon/favicon16.jpg">
<!-- Stylesheet -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Chociearea>> Logo, social link and rule popup-->
<div id="choicearea">
<img src="assets/images/logoartmemo.webp" class="logo" alt="Logotype Art of memory.">
<div class="bywho">Art & game created by <br>Camilla Dahlström</div>
<div class="social-link">
<a href="https://github.com/Camdah77" target="_blank" aria-label="Link to creator: camilla Dahlstrom´s GitHub"><i
class="fa-brands fa-github" style="color: #ffffff"></i></a>
<a href="mailto:camilla.dahlstromz@gmail.com" target="_blank"
aria-label="Send an mail to creator Camilla Dahlstrom"><i class="fa-regular fa-envelope"
style="color: #ffffff"></i></a><br>
<!-- Popup windows with rules > part of choice area-->
<a href="#popup1" class="btn">How to play</a>
<div id="popup1" class="popup">
<a href="#" class="close">×</a>
<h2>Rules</h2>
<p> Find 8 matching pairs by choosing two cards on the board. <br>
If they match- choose two new cards. <br>
<p> You win when you find all 8 pairs.<br>
Good luck!
</div>
<!-- gamearea>>Wrapper,, time/movecount game container, stop button-->
<div id="gamearea"></div>
<div class="wrapper">
<div class="stats-container">
<div id="moves-count"></div>
<div id="time"></div>
</div>
<div class="game-container"></div>
<div class="controlarea">
<button id="stop" class="hide">Stop Game</button>
</div>
</div>
</div>
</div>
<!-- Controlcontiner with welcome image , start button and result if winning the game -->
<div class="controls-container">
<p id="result"></p>
<img src="assets/images/welcomeimg.webp" class="welcomeimg"
alt="welcome to Art of memory. Artwork and game is created by Camilla Dahlstrom. Student project at Code Institute, PP2">
<button id="start" class="startbutton">Play art of memory</button>
</div>
<!-- Javascript-->
<script src="assets/js/script.js"></script>
<!-- Fontawesome for icons>social links-->
<script src="https://kit.fontawesome.com/e48964c33a.js" crossorigin="anonymous"></script>
</body>
</html>