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