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