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