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