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