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