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