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