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