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