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