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