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