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