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