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