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