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