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