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