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