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