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