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