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