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