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