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