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