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