Skip to content

Instantly share code, notes, and snippets.

@datdudejibril
Last active February 5, 2017 18:20
Show Gist options
  • Save datdudejibril/2de2128a762bd94c2527f796c6ffdd44 to your computer and use it in GitHub Desktop.
Save datdudejibril/2de2128a762bd94c2527f796c6ffdd44 to your computer and use it in GitHub Desktop.
Memory Game
h1 {
color: rgb(2, 132, 130);
}
h2 {
color: #ffd700;
}
.board {
display: inline-block;
height: 50%;
width: 80%;
}
.card {
height: 200px;
width: 150px;
border:1px solid black;
border-radius: 10px;
background-color: rgb(255,255,0);
}
<!DOCTYPE html>
<html>
<head>
<title>Super Fast Memory</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<h1>Super Fast Memory</h1>
<h2>Instructions</h2>
<p>Concentration, also known as Match Match, Memory, Pelmanism, Shinkei-suijaku, Pexeso, or Pairs, is a card game in which all of the cards are laid facedown on a surface and two cards are flipped face up over each turn. The object of the game is to turn over pairs of matching cards.</p>
<div class="board">
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
<div class="card"></div>
</div>
<p>created by <a href="jibrilsulaiman.com">Jibril Sulaiman</a></p>
<p>Follow me on <a href="https://twitter.com/datdudejibril">Twitter</a>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment