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