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