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