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