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