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