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