Skip to content

Instantly share code, notes, and snippets.

@wlippold
Last active January 9, 2017 18:04
Show Gist options
  • Save wlippold/7b6b59836cb3b32036e1eb130ba5d0bf to your computer and use it in GitHub Desktop.
Save wlippold/7b6b59836cb3b32036e1eb130ba5d0bf to your computer and use it in GitHub Desktop.
Font Effects2
<html>
<head>
<title>How to create a font effects using google web fonts?</title>
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Kaushan+Script&effect=neon">
<style>
body {
font-family: 'Kaushan Script', serif;
font-size: 200px;
text-align: center;
background-color: black;
}
</style>
</head>
<body>
<div class="font-effect-neon">NEON</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment