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