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