<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Post-it notes</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="postit">
<div id="message">
Look at this CSS code to see how you could add your own Post-It notes to your webpages.
<div>
</div>
</body>
</html>
/*Downloaded from https://www.codeseek.co/101Computing/post-it-notes-xtAco */
#postit {
display: block;
width: 300px;
height: 300px;
background-image: url('http://www.101computing.net/wp/wp-content/uploads/post-it.jpg');
}
#message {
text-align: center;
padding: 70px 50px 50px 50px;
color: #C40808;
font-family: Trebuchet MS;
font-size: 20px;
}