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