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