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