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