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