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