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