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