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