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