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