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