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