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