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