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