Use on the webTotal Use [ 4501 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/c352fccabcd596c352361fc2978b290f?family=Chaparral+W01+Lt+Dspl" 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/c352fccabcd596c352361fc2978b290f?family=Chaparral+W01+Lt+Dspl);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Chaparral W01 Lt Dspl";
src: url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.eot");
src: url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/c352fccabcd596c352361fc2978b290f.svg#Chaparral W01 Lt Dspl")format("svg");
}
2CSS rules to specify fonts
font-family: "Chaparral W01 Lt Dspl";