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