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