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