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