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