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