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