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