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