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