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