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