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