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