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