CSS part (style.css)
1 2 3 4 5 6 7 8 9 10 11 12 13 | @font-face { font-family : 'intro_head_rbase' ; src : url ( 'introheadr-base-webfont.eot' ); src : url ( 'introheadr-base-webfont.eot?#iefix' ) format ( 'embedded-opentype' ), url ( 'introheadr-base-webfont.woff2' ) format ( 'woff2' ), url ( 'introheadr-base-webfont.woff' ) format ( 'woff' ), url ( 'introheadr-base-webfont.ttf' ) format ( 'truetype' ), url ( 'introheadr-base-webfont.svg#intro_head_rbase' ) format ( 'svg' ); font-weight : normal ; font-style : normal ; } body{ font-family : 'intro_head_rbase' ;} |
HTML part (index.html)
1 2 3 4 5 6 7 8 9 10 11 | < p ><!DOCTYPE html> < html class = "no-js" > < head > < meta charset = "utf-8" > < meta http-equiv = "Content-Type" content = "text/html; charset=utf-8" /> < link rel = "stylesheet" href = "style.css" > </ head > < body > < div class = "huge" >abcde</ div > </ body > </ html ></ p > |