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