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