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