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