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