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