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