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