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