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