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