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