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