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