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