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