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