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