EmbossedText

Embossed Text

by sundaramkumar

HTML

<h1>
Welcome
</h1>

CSS

@import url(http://fonts.googleapis.com/css?family=Bitter:400,700);

body {background: #5D8D89;}

h1 {
	margin: 50px auto;
	text-align: center;
	text-shadow: -1px -1px 0px rgba(255,255,255,0.5), 1px 1px 0px rgba(0,0,0,0.5);
	color: #333;
	opacity: 0.4;
	font: 700 80px 'Bitter'
  }