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