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