A Pen by Captain Anonymous on CodePen.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="mkt">Nice to meet you</div> | |
</body> | |
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.mkt{ | |
color:red; | |
background-color:yellow; | |
width:300px; | |
height:50px; | |
line-height:50px; | |
font-size:31px; | |
text-align:center; | |
margin:20px; | |
border:1px solid #eee; | |
box-shadow:3px 3px 3px #999; | |
} |