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