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