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