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