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