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