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