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