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