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