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