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