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