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