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