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