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