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