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