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