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