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