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