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