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