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