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