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