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