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