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