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