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