Skip to content

Instantly share code, notes, and snippets.

@hidayat365
Created May 22, 2013 05:02
Show Gist options
  • Save hidayat365/5625345 to your computer and use it in GitHub Desktop.
Save hidayat365/5625345 to your computer and use it in GitHub Desktop.
Contoh Penggunaan CSS fontface
/* custom fonts from www.m2i-internasional.com */
@font-face {
font-family: 'BebasNeueRegular';
src: url('../fonts/BebasNeue-webfont.eot');
src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/BebasNeue-webfont.woff') format('woff'),
url('../fonts/BebasNeue-webfont.ttf') format('truetype'),
url('../fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'YanoneKaffeesatzRegular';
src: url('../fonts/YanoneKaffeesatz-Regular-webfont.eot');
src: url('../fonts/YanoneKaffeesatz-Regular-webfont.eot?#iefix') format('embedded-opentype'),
url('../fonts/YanoneKaffeesatz-Regular-webfont.woff') format('woff'),
url('../fonts/YanoneKaffeesatz-Regular-webfont.ttf') format('truetype'),
url('../fonts/YanoneKaffeesatz-Regular-webfont.svg#YanoneKaffeesatzRegular') format('svg');
font-weight: normal;
font-style: normal;
}
/* headings */
h1, h2, h3, h4, h5 {
font-family: BebasNeueRegular, Arial, serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment