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