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