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