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