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