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