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