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