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