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