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