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