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