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