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