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