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