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