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