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