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