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