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