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