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