http://www.google.com/webfonts#ChoosePlace:select
html:
css:
html:
<!doctype html>
<html>
<head>
<title>My First Website</title>
<meta charset="uft-8"/>
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href='http://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css' />
</head>
<body>
<h1>nettuts+</h1>
</body>
</html>
css:
body {
background-color: #666;
}
h1 {
font-size: 120px;
text-align: center;
margin-top: 50px;
font-family: 'Great Vibes', cursive;
letter-spacing: 15px;
color: black;
text-transform: lowercase;
text-shadow:
5px -1px 0 white,
6px -2px 0 red;
}