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