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