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