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