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