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