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