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