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