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