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