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