generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
57 lines (57 loc) · 3.27 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<title>Smiley's Memories</title>
<meta name="author" content="Tomislav Dukez">
<meta name="description" content="Smiley's Memories.A Memory Game inspired by Smiley emoticon.">
<meta name="keywords" content="Smiley, Memories, Memory Game, game, fun">
<link rel="icon" type="image/x-icon" href="./assets/images/favicon-16x16.png">
</head>
<body class="rough-paper">
<header>
<!-- navbar slightly followed and adapted from https://github.com/WebDevSimplified/css-tutorials/tree/master/Responsive%20Navbar -->
<nav class="navbar">
<div class="logo"><a href="./index.html"><i class="fa-regular fa-face-smile"></i> Smiley's Memories</a></div>
<div class="nav-links">
<ul>
<li><a href="./index.html">Home</a></li>
<li class="active"><a href="./about.html">About</a></li>
</ul>
</div>
</nav>
</header>
<!-- Section History, Info about the memory game -->
<section class="history">
<h1>About Memory Game</h1>
<div class="image"><img src="./assets/images/original-memory.webp" alt="Original Memory Game" id="memory-img"></div>
<article>
<h2>History</h2>
<div class="para"></div>
<p>First published in today's form by Ravensburger in February 1959.
There are versions known from Japan in the 16th century - matching pictures painted on shells. Known asAwase or Kai-awase.
In USA and England known as Pairs, Pelmanism, or Concentration. But these are played with simple playing cards.
In Switzerland was a domino-like game named Zwillingsspiel with the same roots.
In Czech Republic this type of game is known as Pexeso. It usually consists of 32 pairs of square cards. There are thousands of Pexeso sets with different themes.
There are hundreds of different Memory games - starting with 24 cards for the youngest, with all kinds of animals, art, about countries, also a gay and a "Breast Memory", several free giveaway Memory games published by companies.
The most famous publisher is Ravensburger - they have the rights for the brand name Memory.
</p>
</article>
</section>
<!-- Simple footer -->
<footer>
<div class="social-links">
<a href="https://www.instagram.com/007idkfa/" aria-label="link to TD's Instagram" target="_blank"><i class="fa-brands fa-instagram a-links"></i></a>
<a href="https://github.com/tomdu3" aria-label="link to TD's GitHub" target="_blank"><i class="fa-brands fa-github"></i></a>
<a href="https://www.facebook.com/profile.php?id=100013694132979" aria-label="link to TD's Facebook" target="_blank"><i class="fa-brands fa-facebook"></i></a>
</div>
<div class="copyright">
<p><i class="fa-regular fa-copyright"></i> <span> TD Company 2023</span></p>
</div>
</footer>
</body>
</html>