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