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