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