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