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