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