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