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