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