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