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