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