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