Skip to content

Instantly share code, notes, and snippets.

@datdudejibril
Last active February 5, 2017 20:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save datdudejibril/98df7f16cd6122a37c18ea6a7b47ac18 to your computer and use it in GitHub Desktop.
Save datdudejibril/98df7f16cd6122a37c18ea6a7b47ac18 to your computer and use it in GitHub Desktop.
WDI Lesson 4
/****
Unit 3 Assignment
****/
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);
}
.span {
color: #ff0000
}
body {
text-align: center;
}
<!-- Unit 4 Assignment
-->
<!DOCTYPE html>
<html>
<head>
<title>Super Fast Memory</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/x-icon" href="http://jibrilsulaiman.com/wp-content/uploads/2016/06/cropped-Head-Shot1-32x32.png" />
</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>
<footer>Created with ♥ by <span class="name">GA</span></footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment