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