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