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