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