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