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