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