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