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