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