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