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