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