Use on the webTotal Use [ 4989 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/f8956a5b1db272726a55f31edb079fcc?family=Crossfit+Demo+Hairline" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/f8956a5b1db272726a55f31edb079fcc?family=Crossfit+Demo+Hairline);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Crossfit Demo Hairline";
src: url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.eot");
src: url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/f8956a5b1db272726a55f31edb079fcc.svg#Crossfit Demo Hairline")format("svg");
}
2CSS rules to specify fonts
font-family: "Crossfit Demo Hairline";