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