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