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