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