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